Julian Finkler
My feedback
2 results found
-
96 votes
An error occurred while saving the comment Julian Finkler supported this idea · -
1,146 votes
An error occurred while saving the comment Julian Finkler commentedTo create own shapes would be also helpful 🙂 (Maybe with a share functionality?)
A snap-to feature would be great, especially for drawing lines and shapes.
It should be easy to implement like
void onMovePen(Point currentLocation)
{
Point myPoint = currentLocation;
if(snapModeEnabled())
{
myPoint.X = Round(myPoint.X / GridSize.X, 0) * GridSize.X;
myPoint.Y = Round(myPoint.Y / GridSize.Y, 0) * GridSize.Y;
}
// regular draw logic here
}