colladaLoader
Class Triangle

java.lang.Object
  extended by colladaLoader.Triangle

public class Triangle
extends java.lang.Object

Lucerne University of Applied Sciences and Arts http://www.hslu.ch

This source is free; you can redistribute it and/or modify it under the terms of the GNU General Public License and by nameing of the originally author

Version:
1.0
Author:
Markus Zimmermann http://www.die-seite.ch

Field Summary
 Point3D A
          the 3 Vertices of the Triangle
 Point3D B
          the 3 Vertices of the Triangle
 Point3D C
          the 3 Vertices of the Triangle
 Color colour
          the color of the Triangle if the Triangle has no texture
 boolean containsTexture
          says if the Triangle has Texture
 java.lang.String imageFileName
          the Filename of the texture-Image
 processing.core.PImage imageReference
          an Objectreference of a loaded image by processing.
 Point2D texA
          Texture-Points
 Point2D texB
          Texture-Points
 Point2D texC
          Texture-Points
 
Constructor Summary
Triangle()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

A

public Point3D A
the 3 Vertices of the Triangle


B

public Point3D B
the 3 Vertices of the Triangle


C

public Point3D C
the 3 Vertices of the Triangle


texA

public Point2D texA
Texture-Points


texB

public Point2D texB
Texture-Points


texC

public Point2D texC
Texture-Points


imageFileName

public java.lang.String imageFileName
the Filename of the texture-Image


containsTexture

public boolean containsTexture
says if the Triangle has Texture


imageReference

public processing.core.PImage imageReference
an Objectreference of a loaded image by processing. Default is null.


colour

public Color colour
the color of the Triangle if the Triangle has no texture

Constructor Detail

Triangle

public Triangle()