Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Users
    • Groups
    • Solved
    • Unsolved
    • Search
    1. Home
    2. jansindl3r
    3. Topics
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by jansindl3r

    • jansindl3r

      Copy Page Data
      General Discussion • • jansindl3r  

      2
      0
      Votes
      2
      Posts
      7
      Views

      monomonnik

      You could create an imageObject of the background, but I believe you get pixels instead of outlines. Maybe you can create the whole background in one BezierPath? I’m not sure, but it seems possible to append multiple paths to one BezierPath.
    • jansindl3r

      conditional control UI
      General Discussion • • jansindl3r  

      5
      0
      Votes
      5
      Posts
      30
      Views

      jansindl3r

      on the end I did my own UI and it worked fantastic, thanks for the great work!
    • jansindl3r

      SOLVED Find out whether a point is placed within an area
      General Discussion • • jansindl3r  

      2
      0
      Votes
      2
      Posts
      139
      Views

      gferreira

      @jansindl3r yes, have a look at BezierPath.pointInside(xy)
    • jansindl3r

      SOLVED How can I split a path into multiple segments?
      General Discussion • bezierpath • • jansindl3r  

      8
      0
      Votes
      8
      Posts
      419
      Views

      gferreira

      there’s an example of FlattePen + BezierPath here
    • jansindl3r

      SOLVED How to get width of text, including metrics?
      General Discussion • text • • jansindl3r  

      4
      0
      Votes
      4
      Posts
      187
      Views

      jansindl3r

      @gferreira I also believe that you meant textSize('string')
    • jansindl3r

      SOLVED Place stroke on a shape's contour, with no offset
      General Discussion • stroke clipping outline • • jansindl3r  

      2
      0
      Votes
      2
      Posts
      176
      Views

      gferreira

      hello @jansindl3r, you can use the contours of the letters as a clipping mask, so the outside half of the stroke is not visible: size(2000, 1000) stroke(1, 0, 0) strokeWidth(30) B = BezierPath() B.text('a', (110, 130), fontSize=1400) # clip external stroke with savedState(): clipPath(B) drawPath(B) # normal stroke translate(1000, 0) drawPath(B) cheers!