Tabnine Logo
PApplet.noStroke
Code IndexAdd Tabnine to your IDE (free)

How to use
noStroke
method
in
processing.core.PApplet

Best Java code snippets using processing.core.PApplet.noStroke (Showing top 8 results out of 315)

origin: mirador/mirador

public void noStroke() {
 intf.app.noStroke();
}
origin: ruby-processing/JRubyArt

@Override
void drawGui() {
  if (backgroundVisible) {
    applet.stroke(sliderBack);
    applet.line(pX, pY + pH / 2, pX + pW, pY + pH / 2);
  }
  applet.noStroke();
  applet.fill(255);
  applet.ellipse(pX + pScaled, pY + pH / 2, 10, 10);
}    
origin: poqudrof/PapARt

  /**
   * Called in Automatic mode to display the image.
   */
  public void draw() {
    parent.g.background(30, 30, 30);
    drawScreensOver();
    parent.noStroke();
    parent.g.image(this.render(), 0, 0, this.drawingSizeX, this.drawingSizeY);

//        pxCopy = getPixelsCopy();
  }

origin: ruby-processing/JRubyArt

private void draw() {
  applet.pushStyle();
  applet.noStroke();
  if (horizontal) {
    drawHorizontal();
  } else {
    drawVertical();
  }
  applet.popStyle();
}
origin: ruby-processing/JRubyArt

@Override
public void draw() {
  applet.pushStyle();
  applet.noStroke();
  drawGui();
  displayText();
  applet.popStyle();
  change();
}
origin: ruby-processing/JRubyArt

@Override
public void draw() {
  applet.pushStyle();
  applet.noStroke();
  drawGui();
  displayText();
  applet.popStyle();
  change();
}
origin: poqudrof/PapARt

  /**
   * Called in Automatic mode to display the image.
   */
  @Override
  public void draw() {
    
    if(this.isCalibrationMode){
      MultiSimpleCalibrator.drawCalibration(getGraphics());
      return;
    }
    drawScreensOver();
    parent.noStroke();
    PImage img = camera.getPImage();
    if (camera != null && img != null) {
      parent.image(img, 0, 0, parent.width, parent.height);
//            ((PGraphicsOpenGL) (parent.g)).image(camera.getPImage(), 0, 0, frameWidth, frameHeight);
    }

    // TODO: Distorsion problems with higher image space distorisions (useless ?)
    DrawUtils.drawImage((PGraphicsOpenGL) parent.g,
        this.render(),
        0, 0, parent.width, parent.height);
  }

origin: poqudrof/PapARt

  public static void drawAR(PApplet parent, PGraphicsOpenGL g,
      MultiSimpleCalibrator multiCalibrator, PVector pt) {

    // AR rendering, for touch and color tracking (and debug). 
    if (multiCalibrator.getDisplay() instanceof ARDisplay) {
      ARDisplay display = (ARDisplay) multiCalibrator.getDisplay();
      display.drawScreensOver();
      parent.noStroke();
      PImage img = multiCalibrator.getCameraTracking().getPImage();
      if (multiCalibrator.getCameraTracking() != null && img != null) {
        parent.image(img, 0, 0, parent.width, parent.height);
//            ((PGraphicsOpenGL) (parent.g)).image(camera.getPImage(), 0, 0, frameWidth, frameHeight);
      }

      // TODO: Distorsion problems with higher image space distorisions (useless ?)
      DrawUtils.drawImage((PGraphicsOpenGL) parent.g,
          display.render(),
          0, 0, parent.width, parent.height);
    }

  }

processing.corePAppletnoStroke

Javadoc

( begin auto-generated from noStroke.xml ) Disables drawing the stroke (outline). If both noStroke() and noFill() are called, nothing will be drawn to the screen. ( end auto-generated )

Popular methods of PApplet

  • constrain
  • createGraphics
    Create an offscreen graphics surface for drawing, in this case for a renderer that writes to a file
  • loadStrings
    ( begin auto-generated from loadStrings.xml ) Reads the contents of a file or url and creates a Stri
  • saveStrings
    ( begin auto-generated from saveStrings.xml ) Writes an array of strings to a file, one line per str
  • abs
  • createImage
    ( begin auto-generated from createImage.xml ) Creates a new PImage (the datatype for storing images)
  • createShape
  • createWriter
    ( begin auto-generated from createWriter.xml ) Creates a new file in the sketch folder, and a PrintW
  • loadImage
  • main
    main() method for running this class from the command line. Usage: PApplet [options] [s
  • max
  • parseInt
  • max,
  • parseInt,
  • random,
  • round,
  • split,
  • sqrt,
  • unhex,
  • arrayCopy,
  • ceil,
  • checkExtension

Popular in Java

  • Making http post requests using okhttp
  • onRequestPermissionsResult (Fragment)
  • startActivity (Activity)
  • getResourceAsStream (ClassLoader)
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • Top Sublime Text plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now