Package de.fhpotsdam.unfolding.examples.overviewdetail.connection

Examples of de.fhpotsdam.unfolding.examples.overviewdetail.connection.ConvexHull


  public void setup() {
    size(500, 500);
    background(255);
    smooth();
   
    convexHull = new ConvexHull(this);
    convexHull.showDebugPoints = true;
    convexHull.addPoint(new PVector(random(width), random(height)));
    convexHull.addPoint(new PVector(random(width), random(height)));
    convexHull.addPoint(new PVector(random(width), random(height)));
  }
View Full Code Here

TOP

Related Classes of de.fhpotsdam.unfolding.examples.overviewdetail.connection.ConvexHull

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.