-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixed warnings that were treated as errors * Made needed fields public * Added IsNotch flag extraction from contour point * Fixed Errors * Added Test * Апнул версию * Disabled some warnings * Fixed Error --------- Co-authored-by: rgaynetdinov <[email protected]>
- Loading branch information
1 parent
1e200d3
commit acd412c
Showing
10 changed files
with
152 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
ST | ||
**NC-DSTV-Schnittstelle | ||
DSTV | ||
1 | ||
3 | ||
3 | ||
RST37-2 | ||
1 | ||
HEB400 | ||
I | ||
2000.00 | ||
400.00 | ||
300.00 | ||
24.00 | ||
13.50 | ||
27.00 | ||
155.000 | ||
1.930 | ||
0.000 | ||
0.000 | ||
0.000 | ||
0.000 | ||
TRAEGER | ||
|
||
|
||
|
||
AK | ||
v 200.00u 0.00 0.00 | ||
v 1952.00 0.00w 10.00 | ||
v 200.00 100.00 -10.00 | ||
200.00 110.00t -10.00 | ||
200.00 90.00 0.00 | ||
v 200.00 0.00 0.00 | ||
AK | ||
u 200.00 0.00 0.00 | ||
u 1900.00 0.00 0.00 | ||
u 2000.00 300.00 0.00 | ||
u 200.00 300.00 0.00 | ||
u 200.00 0.00 0.00 | ||
AK | ||
o 159.50s 0.00 0.00 | ||
o 159.50s 300.00 0.00 | ||
o 1650.00s 300.00 0.00 | ||
o 1750.00s 200.00 0.00 | ||
o 1750.00s 0.00 0.00 | ||
o 159.50s 0.00 0.00 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> | ||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Coord/@EntryIndexedValue">True</s:Boolean> | ||
<s:Boolean x:Key="/Default/UserDictionary/Words/=DSTV/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,17 @@ | ||
namespace DSTV.Net.Data; | ||
|
||
public record DstvSkewedPoint : DstvContourPoint | ||
public record DstvSkewedPoint( | ||
string FlCode, | ||
double XCoord, | ||
double YCoord, | ||
bool IsNotch, | ||
double Radius, | ||
double FirstAngle, | ||
double FirstBlunting, | ||
double SecondAngle, | ||
double SecondBlunting) | ||
: DstvContourPoint(FlCode, XCoord, YCoord, IsNotch, Radius) | ||
{ | ||
private readonly double _ang1; | ||
|
||
private readonly double _ang2; | ||
|
||
private readonly double _blunting1; | ||
|
||
private readonly double _blunting2; | ||
|
||
public DstvSkewedPoint(string flCode, double xCoord, double yCoord, double radius, double ang1, double blunting1, | ||
double ang2, double blunting2) : base(flCode, xCoord, yCoord, radius) | ||
{ | ||
_ang1 = ang1; | ||
_blunting1 = blunting1; | ||
_ang2 = ang2; | ||
_blunting2 = blunting2; | ||
} | ||
|
||
|
||
public override string ToString() => | ||
$"DStVSkewedPoint{{ang1={_ang1}, blunting1={_blunting1}, ang2={_ang2}, blunting2={_blunting2}, radius={_radius}, flCode='{FlCode}', xCoord={XCoord}, yCoord={YCoord}}}"; | ||
$"DStVSkewedPoint{{ang1={FirstAngle}, blunting1={FirstBlunting}, ang2={SecondAngle}, blunting2={SecondBlunting}, radius={Radius}, flCode='{FlCode}', xCoord={XCoord}, yCoord={YCoord}}}"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters