Skip to content

Commit 0a37f62

Browse files
author
James Brundage
committed
feat: Turtle.get/set_StrokeThickness ( Fixes #16 )
1 parent a53c653 commit 0a37f62

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
if ($this.'.StrokeThickness') {
2+
return $this.'.StrokeThickness'
3+
} else {
4+
return '0.1%'
5+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
param([string]$value)
2+
3+
$this | Add-Member -MemberType NoteProperty -Force -Name '.StrokeThickness' -Value $value

0 commit comments

Comments
 (0)