Package cc.sketchchair.sketch

Examples of cc.sketchchair.sketch.Sketch


  public boolean packed = false;
  public spShapePack shapePack;


  public void addOutline(ArrayList l) {
    outlines.add(new spOutline(new Sketch(GLOBAL.uiTools.SketchTools, GLOBAL.SketchGlobals),l));
  }
View Full Code Here


  public void addOutline(ArrayList l) {
    outlines.add(new spOutline(new Sketch(GLOBAL.uiTools.SketchTools, GLOBAL.SketchGlobals),l));
  }

  public void addCollisionOutline(ArrayList l) {
    collisionOutlines.add(new spOutline(new Sketch(GLOBAL.uiTools.SketchTools, GLOBAL.SketchGlobals),l));
  }
View Full Code Here

    */

  }

  public void mousePressed(float mouseX, float mouseY) {
    Sketch tempSketch = new Sketch(GLOBAL.uiTools.SketchTools,
        GLOBAL.SketchGlobals);

    //THIS IS A HACK TO ADD A PLANE IF NONE EXISTS CHANGE IT!!!!!
    /*
    if (count() == 0) {
View Full Code Here

    for (int i = 0; i < element.getChildCount(); i++) {
      Element child = (Element) element.getChild(i);

      if (child != null && child.getLocalName().equals("Sketch")) {
        this.setSketch(new Sketch(GLOBAL.uiTools.SketchTools,
            GLOBAL.SketchGlobals, child));
        this.getSketch().setOnSlicePlane(this);
      }

      if (child != null && child.getLocalName().equals("SketchShapes")) {
        this.setSketch(new Sketch(GLOBAL.uiTools.SketchTools,
            GLOBAL.SketchGlobals, child));
        this.getSketch().setOnSlicePlane(this);
      }

      if (child != null && child.getLocalName().equals("Plane")) {
View Full Code Here

  }

  public SlicePlane(Plane plane) {
    this.setId(GLOBAL.planeID++);

    setSketch(new Sketch(GLOBAL.uiTools.SketchTools, GLOBAL.SketchGlobals,
        this));
    this.setPlane(plane);
    this.getSketch().setOnSlicePlane(this);
    this.select();
  }
View Full Code Here

TOP

Related Classes of cc.sketchchair.sketch.Sketch

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.