Julian Finkler

My feedback

2 results found

  1. 96 votes
    How important is this to you?
    An error occurred while saving the comment
    Julian Finkler commented  · 

    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
    }

    Julian Finkler supported this idea  · 
  2. 1,154 votes
    interested  ·  72 comments  ·  General » Note Editor  ·  Admin →
    How important is this to you?
    An error occurred while saving the comment
    Julian Finkler commented  · 

    To create own shapes would be also helpful 🙂 (Maybe with a share functionality?)

Feedback and Knowledge Base