We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Turtle.get_PathData
1 parent a77a515 commit 0963ce0Copy full SHA for 0963ce0
Types/Turtle/get_PathData.ps1
@@ -29,7 +29,7 @@
29
$precision = $this.Precision
30
filter roundToPrecision { [Math]::Round($_, $precision)}
31
32
- if ($this.Start.X -and $this.Start.Y) {
+ if ($null -ne $this.Start.X -and $null -ne $this.Start.Y) {
33
if ($precision) {
34
"m $($this.Start.x | roundToPrecision) $($this.Start.y | roundToPrecision)"
35
} else {
0 commit comments