Interface Matrix3VertexAttribute

All Superinterfaces:
X3DGeometricPropertyNode, X3DNode, X3DVertexAttributeNode
All Known Implementing Classes:
Matrix3VertexAttribute

public interface Matrix3VertexAttribute extends X3DVertexAttributeNode
Matrix3VertexAttribute defines a set of per-vertex 3x3 matrix attributes.

Warning: this is an abstract interface that cannot be instantiated as a concrete object. Java programmers typically only need to use concrete objects provided by the org.web3d.x3d.jsail classes. X3D node tooltip: (X3D version 3.1 or later) [X3DVertexAttributeNode] Matrix3VertexAttribute defines a set of per-vertex 3x3 matrix attributes. *


Package hint: This interface is defined by the X3D Java Language Binding Specification for the Scene Authoring Interface (SAI).
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    Provide org.web3d.x3d.sai.Core.X3DMetadataObject instance (using a properly typed node) from inputOutput SFNode field metadata.
    Provide String value from initializeOnly xs:NMTOKEN field named name.
    float[]
    Provide array of float results from inputOutput MFMatrix3f field named value.
    Accessor method to assign org.web3d.x3d.sai.Core.X3DMetadataObject instance (using a properly typed node) to inputOutput SFNode field metadata.
    setName(String newValue)
    Accessor method to assign String value to initializeOnly xs:NMTOKEN field named name.
    setValue(float[] newValue)
    Accessor method to assign float array to inputOutput MFMatrix3f field named value.
  • Method Details

    • getMetadata

      X3DMetadataObject getMetadata()
      Provide org.web3d.x3d.sai.Core.X3DMetadataObject instance (using a properly typed node) from inputOutput SFNode field metadata.

      Tooltip: [X3DMetadataObject] Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node. Hint: X3D Architecture 7.2.4 Metadata <a href="https://www.web3d.org/specifications/X3Dv4Draft/ISO-IEC19775-1v4-IS.proof//Part01/components/core.html#Metadata" target="_blank">https://www.web3d.org/specifications/X3Dv4Draft/ISO-IEC19775-1v4-IS.proof//Part01/components/core.html#Metadata</a> *
      Specified by:
      getMetadata in interface X3DGeometricPropertyNode
      Specified by:
      getMetadata in interface X3DNode
      Specified by:
      getMetadata in interface X3DVertexAttributeNode
      Returns:
      value of metadata field
      See Also:
    • setMetadata

      Accessor method to assign org.web3d.x3d.sai.Core.X3DMetadataObject instance (using a properly typed node) to inputOutput SFNode field metadata.

      Tooltip: [X3DMetadataObject] Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node. Hint: X3D Architecture 7.2.4 Metadata <a href="https://www.web3d.org/specifications/X3Dv4Draft/ISO-IEC19775-1v4-IS.proof//Part01/components/core.html#Metadata" target="_blank">https://www.web3d.org/specifications/X3Dv4Draft/ISO-IEC19775-1v4-IS.proof//Part01/components/core.html#Metadata</a> *
      Specified by:
      setMetadata in interface X3DGeometricPropertyNode
      Specified by:
      setMetadata in interface X3DNode
      Specified by:
      setMetadata in interface X3DVertexAttributeNode
      Parameters:
      newValue - is new value for the metadata field.
      Returns:
      Matrix3VertexAttribute - namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
      See Also:
    • getName

      String getName()
      Provide String value from initializeOnly xs:NMTOKEN field named name.

      Tooltip: Required name for this particular VertexAttribute instance. Warning: name is not specified if this instance is a USE node. Hint: well-defined names can simplify design and debugging through improved author understanding. Hint: X3D Scene Authoring Hints, Naming Conventions <a href="https://www.web3d.org/x3d/content/examples/X3dSceneAuthoringHints.html#NamingConventions" target="_blank">https://www.web3d.org/x3d/content/examples/X3dSceneAuthoringHints.html#NamingConventions</a> *
      Specified by:
      getName in interface X3DVertexAttributeNode
      Returns:
      value of name field
    • setName

      Matrix3VertexAttribute setName(String newValue)
      Accessor method to assign String value to initializeOnly xs:NMTOKEN field named name.

      Tooltip: Required name for this particular VertexAttribute instance. Warning: name is not specified if this instance is a USE node. Hint: well-defined names can simplify design and debugging through improved author understanding. Hint: X3D Scene Authoring Hints, Naming Conventions <a href="https://www.web3d.org/x3d/content/examples/X3dSceneAuthoringHints.html#NamingConventions" target="_blank">https://www.web3d.org/x3d/content/examples/X3dSceneAuthoringHints.html#NamingConventions</a> *
      Specified by:
      setName in interface X3DVertexAttributeNode
      Parameters:
      newValue - is new value for the name field.
      Returns:
      Matrix3VertexAttribute - namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
    • getValue

      float[] getValue()
      Provide array of float results from inputOutput MFMatrix3f field named value.

      Tooltip: value specifies an arbitrary collection of matrix values that will be passed to the shader as per-vertex information. Hint: the length of the value field shall be a multiple of numComponents. *
      Returns:
      value of value field
    • setValue

      Matrix3VertexAttribute setValue(float[] newValue)
      Accessor method to assign float array to inputOutput MFMatrix3f field named value.

      Tooltip: value specifies an arbitrary collection of matrix values that will be passed to the shader as per-vertex information. Hint: the length of the value field shall be a multiple of numComponents. *
      Parameters:
      newValue - is new value for the value field.
      Returns:
      Matrix3VertexAttribute - namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).