Skip to content

Commit

Permalink
private protected
Browse files Browse the repository at this point in the history
  • Loading branch information
Lehonti Ramos committed Aug 9, 2023
1 parent 8603a4c commit 913a9a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Pinta.Tools/Editable/Shapes/ShapeEngineCollection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public abstract class ShapeEngine
public List<MoveHandle> ControlPointHandles { get; private set; } = new ();

//A collection of calculated GeneratedPoints that make up the entirety of the shape being drawn.
public GeneratedPoint[] GeneratedPoints { get; protected set; } = Array.Empty<GeneratedPoint> ();
public GeneratedPoint[] GeneratedPoints { get; private protected set; } = Array.Empty<GeneratedPoint> ();

//An organized collection of the GeneratedPoints's points for optimized nearest point detection.
public OrganizedPointCollection OrganizedPoints { get; } = new ();
Expand Down

0 comments on commit 913a9a0

Please sign in to comment.