Class SplinePositionInterpolator

java.lang.Object
org.web3d.x3d.jsail.X3DConcreteElement
org.web3d.x3d.jsail.X3DConcreteNode
org.web3d.x3d.jsail.Interpolation.SplinePositionInterpolator
All Implemented Interfaces:
X3DChildNode, X3DNode, SplinePositionInterpolator, X3DInterpolatorNode

public class SplinePositionInterpolator extends X3DConcreteNode implements SplinePositionInterpolator
SplinePositionInterpolator performs non-linear interpolation among paired lists of 3-tuple values and velocities to produce an SFVec3f value_changed output event.

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.2 or later) [X3DInterpolatorNode] SplinePositionInterpolator performs non-linear interpolation among paired lists of 3-tuple values and velocities to produce an SFVec3f value_changed output event. Hint: typical input connection is ROUTE someTimeSensorDEF.fraction_changed TO thisInterpolatorDEF.set_fraction Hint: typical output connection is ROUTE thisInterpolatorDEF.value_changed TO someDestinationNodeDEF.set_someAttribute. Warning: requires X3D profile='Full' or else include <component name='Interpolation' level='4'/> *


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: SplinePositionInterpolator.
      See Also:
    • COMPONENT

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

      public static final int LEVEL
      Integer constant LEVEL provides default X3D Interpolation component level for this element: 4
      See Also:
    • CLOSED_DEFAULT_VALUE

      public static final boolean CLOSED_DEFAULT_VALUE
      SFBool field named closed has default value false (Java syntax) or false (XML syntax).
      See Also:
    • IS_DEFAULT_VALUE

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

      public static final ArrayList<Float> KEY_DEFAULT_VALUE
      MFFloat field named key has default value equal to an empty list.
    • KEYVALUE_DEFAULT_VALUE

      public static final float[] KEYVALUE_DEFAULT_VALUE
      MFVec3f field named keyValue has default value equal to an empty list.
    • KEYVELOCITY_DEFAULT_VALUE

      public static final float[] KEYVELOCITY_DEFAULT_VALUE
      MFVec3f field named keyVelocity has default value equal to an empty list.
    • METADATA_DEFAULT_VALUE

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

      public static final boolean NORMALIZEVELOCITY_DEFAULT_VALUE
      SFBool field named normalizeVelocity has default value false (Java syntax) or false (XML syntax).
      See Also:
    • 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_CLOSED

      public static final String fromField_CLOSED
      fromField ROUTE name for SFBool field named closed.
      See Also:
    • toField_CLOSED

      public static final String toField_CLOSED
      toField ROUTE name for SFBool field named closed.
      See Also:
    • fromField_IS

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

      public static final String fromField_KEY
      fromField ROUTE name for MFFloat field named key.
      See Also:
    • toField_KEY

      public static final String toField_KEY
      toField ROUTE name for MFFloat field named key.
      See Also:
    • fromField_KEYVALUE

      public static final String fromField_KEYVALUE
      fromField ROUTE name for MFVec3f field named keyValue.
      See Also:
    • toField_KEYVALUE

      public static final String toField_KEYVALUE
      toField ROUTE name for MFVec3f field named keyValue.
      See Also:
    • fromField_KEYVELOCITY

      public static final String fromField_KEYVELOCITY
      fromField ROUTE name for MFVec3f field named keyVelocity.
      See Also:
    • toField_KEYVELOCITY

      public static final String toField_KEYVELOCITY
      toField ROUTE name for MFVec3f field named keyVelocity.
      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_NORMALIZEVELOCITY

      public static final String fromField_NORMALIZEVELOCITY
      fromField ROUTE name for SFBool field named normalizeVelocity.
      See Also:
    • toField_NORMALIZEVELOCITY

      public static final String toField_NORMALIZEVELOCITY
      toField ROUTE name for SFBool field named normalizeVelocity.
      See Also:
    • toField_SET_FRACTION

      public static final String toField_SET_FRACTION
      toField ROUTE name for SFFloat field named set_fraction.
      See Also:
    • fromField_VALUE_CHANGED

      public static final String fromField_VALUE_CHANGED
      fromField ROUTE name for SFVec3f field named value_changed.
      See Also:
  • Constructor Details

    • SplinePositionInterpolator

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

      public SplinePositionInterpolator(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