Package nu3a.geometry

Examples of nu3a.geometry.N3NormalData


      throws N3NameException {
    super(scene, name);
    geometry = g;
    colorData = new N3ColorData();
    vertexData = new N3VertexData();
    normalData = new N3NormalData();
    texCoordData = new N3TexCoordData();
    disabledLights = new Vector(0, 1);
    geometry.addGeometryListener(this);
    scene.addVisualObject(this);
    processGeometry();
View Full Code Here


    }
  }

  public void drawData(N3VertexData vertexData, int dataType,
      N3ColorData colorData) {
    drawData(vertexData, dataType, colorData, new N3NormalData());
  }
View Full Code Here

TOP

Related Classes of nu3a.geometry.N3NormalData

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.