java.lang.Object
java.lang.Record
com.marginallyclever.ro3.apps.viewport.renderpass.MeshMaterialMatrix
Record Components:
meshInstance - The mesh to render.
material - The material with which to render the mesh.
matrix - The transformation matrix to apply to the mesh.

public record MeshMaterialMatrix(MeshInstance meshInstance, Material material, javax.vecmath.Matrix4d matrix) extends Record
A mesh and the material to render it with.
  • Constructor Details

    • MeshMaterialMatrix

      public MeshMaterialMatrix(MeshInstance meshInstance, Material material, javax.vecmath.Matrix4d matrix)
      Creates an instance of a MeshMaterialMatrix record class.
      Parameters:
      meshInstance - the value for the meshInstance record component
      material - the value for the material record component
      matrix - the value for the matrix record component
  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • meshInstance

      public MeshInstance meshInstance()
      Returns the value of the meshInstance record component.
      Returns:
      the value of the meshInstance record component
    • material

      public Material material()
      Returns the value of the material record component.
      Returns:
      the value of the material record component
    • matrix

      public javax.vecmath.Matrix4d matrix()
      Returns the value of the matrix record component.
      Returns:
      the value of the matrix record component