Class Triangle_f


  • public class Triangle_f
    extends java.lang.Object
    plain triangle class. The second template argument specify
    the number of normals associated with the triangle.
    The triangle vertices should be arranged counter clock wise.
    • Constructor Detail

      • Triangle_f

        public Triangle_f​(long cPtr,
                          boolean cMemoryOwn)
      • Triangle_f

        public Triangle_f()
        default constructor
      • Triangle_f

        public Triangle_f​(Vector3Df p1,
                          Vector3Df p2,
                          Vector3Df p3)
        constructor
        Parameters:
        p1 - [in] vertice 1
        p2 - [in] vertice 2
        p3 - [in] vertice 3
    • Method Detail

      • getCPtr

        public static long getCPtr​(Triangle_f obj)
      • delete

        public void delete()
      • getVertex

        public Vector3Df getVertex​(long i)
        get vertex at index i
      • set

        public void set​(long i,
                        Vector3Df d)
      • calcFaceNormal

        public Vector3Df calcFaceNormal()
        calculates the face normal of this triangle. It is assumed
        that the triangle vertices are arranged counter clock wise.
      • isInside

        public boolean isInside​(Vector3Df x)
        tests wheather the point x is inside the triangle
      • calcArea

        public double calcArea()
        calculate the area of the triangle
        Returns:
        area in m^2
      • applyTransform

        public void applyTransform​(Transform3Df t3d)
        apply a transformation to this triangle
        Parameters:
        t3d - [in] transform that is to be applied
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object