Skip to content
#

processing

Here are 2,632 public repositories matching this topic...

bfallc
bfallc commented Jan 31, 2020

The descenders (the part of a letter "below the line") is cut off when specifying a wrap_at point within the text() command. With the wrap_at variable omitted, the descender reappears.

from p5 import *

f = None

def setup():
        global f
        size(640, 480)
        # Create the font
        f = create_font("Arial.ttf", 20)
        text_font(f)
        
def draw():
   
vanjac
vanjac commented Feb 26, 2019

Other widgets like Sliders and Numberboxes submit their values and call events immediately when they are changed, but Textfield requires the extra step of pressing enter. This isn't always intuitive, especially when you're filling out a form with a list of text boxes -- most people won't press enter after typing in each one. If you are using linked variables to access the values (instead of `getTe

jeremydouglass
jeremydouglass commented Aug 6, 2019

@gaocegege -- what are the current build instructions?

CONTRIBUTING.md says "Read the README.md for build instructions" -- but it doesn't have build instructions. I'm looking through various artifacts -- docker, travis, appveyor, a build.xml for ant (eclipse?), and a set of scripts, e.g. deploy -- and trying to reconstruct a build setup for when I roll up a new release.

scudly
scudly commented Dec 13, 2018

Pinch gestures are used to zoom objects or views in and out. Pinching is used to modify the scale. This is a multiplicative operation, not an additive one. onPinch currently gives the difference in distance between the two contact points before and after the gesture, but doesn't tell anything about the size.

As an example, a 10-pixel difference between points starting 10 pixels apart would

Improve this page

Add a description, image, and links to the processing topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the processing topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.