Skip to content

Commit

Permalink
[Fonts] Add public members to Path
Browse files Browse the repository at this point in the history
  • Loading branch information
hyazinthh committed Aug 5, 2024
1 parent 67bebab commit ef4b554
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Aardvark.Base.Fonts/Path.fs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ type WindingRule =
| EvenOdd
| AbsGreaterEqualTwo

type Path = private { bounds : Box2d; outline : PathSegment[] }
type Path =
private { bounds : Box2d; outline : PathSegment[] }
member x.Bounds = x.bounds
member x.Outline = x.outline

[<CompilationRepresentation(CompilationRepresentationFlags.ModuleSuffix)>]
module Path =
Expand Down

0 comments on commit ef4b554

Please sign in to comment.