Package nu3a.material.texture

Examples of nu3a.material.texture.N3TexCoordData


    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


   */

  protected N3VisualObject(N3Scene scene, String name) throws N3NameException {
    super(scene, name);
    colorData = new N3ColorData();
    texCoordData = new N3TexCoordData();
    disabledLights = new Vector(0, 1);
    geometry = null;
    scene.addVisualObject(this);
  }
View Full Code Here

TOP

Related Classes of nu3a.material.texture.N3TexCoordData

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.