Skip to content

Commit ef4b554

Browse files
committed
[Fonts] Add public members to Path
1 parent 67bebab commit ef4b554

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Aardvark.Base.Fonts/Path.fs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ type WindingRule =
1010
| EvenOdd
1111
| AbsGreaterEqualTwo
1212

13-
type Path = private { bounds : Box2d; outline : PathSegment[] }
13+
type Path =
14+
private { bounds : Box2d; outline : PathSegment[] }
15+
member x.Bounds = x.bounds
16+
member x.Outline = x.outline
1417

1518
[<CompilationRepresentation(CompilationRepresentationFlags.ModuleSuffix)>]
1619
module Path =

0 commit comments

Comments
 (0)