Class NurbsTextureCoordinate

All Implemented Interfaces:
X3DNode, NurbsTextureCoordinate

public class NurbsTextureCoordinate extends X3DConcreteNode implements NurbsTextureCoordinate
NurbsTextureCoordinate describes a 3D NURBS surface in the parametric domain of its surface host, specifying mapping of texture onto the surface.

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: [X3DNode] NurbsTextureCoordinate describes a 3D NURBS surface in the parametric domain of its surface host, specifying mapping of texture onto the surface. Hint: the SFNode controlPoint field can contain a single Coordinate or CoordinateDouble node. *


Package hint: This org.web3d.x3d.jsail concrete class is used for implementing a standalone X3D object as a Plain Old Java Object (POJO). If you are writing Java code for use inside an X3D Script node, compile separate code using only the org.web3d.x3d.sai package instead.
See Also:
  • Field Details

    • NAME

      public static final String NAME
      String constant NAME provides name of this element: NurbsTextureCoordinate.
      See Also:
    • COMPONENT

      public static final String COMPONENT
      String constant COMPONENT defines X3D component for the NurbsTextureCoordinate element: NURBS
      See Also:
    • LEVEL

      public static final int LEVEL
      Integer constant LEVEL provides default X3D NURBS component level for this element: 1
      See Also:
    • CONTROLPOINT_DEFAULT_VALUE

      public static final float[] CONTROLPOINT_DEFAULT_VALUE
      MFVec2f field named controlPoint has default value equal to an empty list.
    • IS_DEFAULT_VALUE

      public static final IS IS_DEFAULT_VALUE
      SFNode field named IS has default value null (Java syntax) or NULL (XML syntax).
    • METADATA_DEFAULT_VALUE

      public static final X3DMetadataObject METADATA_DEFAULT_VALUE
      SFNode field named metadata has default value null (Java syntax) or NULL (XML syntax).
    • UDIMENSION_DEFAULT_VALUE

      public static final int UDIMENSION_DEFAULT_VALUE
      SFInt32 field named uDimension has default value 0 (Java syntax) or 0 (XML syntax).
      See Also:
    • UKNOT_DEFAULT_VALUE

      public static final ArrayList<Double> UKNOT_DEFAULT_VALUE
      MFDouble field named uKnot has default value equal to an empty list.
    • UORDER_DEFAULT_VALUE

      public static final int UORDER_DEFAULT_VALUE
      SFInt32 field named uOrder has default value 3 (Java syntax) or 3 (XML syntax).
      See Also:
    • VDIMENSION_DEFAULT_VALUE

      public static final int VDIMENSION_DEFAULT_VALUE
      SFInt32 field named vDimension has default value 0 (Java syntax) or 0 (XML syntax).
      See Also:
    • VKNOT_DEFAULT_VALUE

      public static final ArrayList<Double> VKNOT_DEFAULT_VALUE
      MFDouble field named vKnot has default value equal to an empty list.
    • VORDER_DEFAULT_VALUE

      public static final int VORDER_DEFAULT_VALUE
      SFInt32 field named vOrder has default value 3 (Java syntax) or 3 (XML syntax).
      See Also:
    • WEIGHT_DEFAULT_VALUE

      public static final ArrayList<Double> WEIGHT_DEFAULT_VALUE
      MFDouble field named weight has default value equal to an empty list.
    • containerField_DEFAULT_VALUE

      public static final String containerField_DEFAULT_VALUE
      containerField describes typical field relationship of a node to its parent. Usage is not ordinarily needed when using this API, default value is provided for informational purposes.
      See Also:
    • fromField_CONTROLPOINT

      public static final String fromField_CONTROLPOINT
      fromField ROUTE name for MFVec2f field named controlPoint.
      See Also:
    • toField_CONTROLPOINT

      public static final String toField_CONTROLPOINT
      toField ROUTE name for MFVec2f field named controlPoint.
      See Also:
    • fromField_IS

      public static final String fromField_IS
      fromField ROUTE name for SFNode field named IS.
      See Also:
    • fromField_METADATA

      public static final String fromField_METADATA
      fromField ROUTE name for SFNode field named metadata.
      See Also:
    • toField_METADATA

      public static final String toField_METADATA
      toField ROUTE name for SFNode field named metadata.
      See Also:
    • fromField_WEIGHT

      public static final String fromField_WEIGHT
      fromField ROUTE name for MFDouble field named weight.
      See Also:
    • toField_WEIGHT

      public static final String toField_WEIGHT
      toField ROUTE name for MFDouble field named weight.
      See Also:
  • Constructor Details

    • NurbsTextureCoordinate

      public NurbsTextureCoordinate()
      Constructor for NurbsTextureCoordinate to initialize member variables with default values.
    • NurbsTextureCoordinate

      public NurbsTextureCoordinate(String DEFlabel)
      Utility constructor that assigns DEF label after initializing member variables with default values.
      Parameters:
      DEFlabel - unique DEF name for this X3D node
  • Method Details