Class SFVec3d
java.lang.Object
org.web3d.x3d.jsail.fields.X3DConcreteField
org.web3d.x3d.jsail.fields.SFVec3d
This utility class provides a concrete implementation corresponding to SFVec3d X3D field type.
 
 
 
Package hint: This specification class is defined by the X3D Java Language Binding Specification for the Scene Authoring Interface (SAI). SFVec3d is a 3-tuple triplet of SFDouble values. See GeoVRML 1.0 Recommended Practice, Section 2.3, Limitations of Single Precision. Hint: SFVec3d can be used to specify a georeferenced 3D coordinate. Warning: comma characters within singleton values do not pass strict XML validation.
Related field object:
Package hint: This specification class is defined by the X3D Java Language Binding Specification for the Scene Authoring Interface (SAI). SFVec3d is a 3-tuple triplet of SFDouble values. See GeoVRML 1.0 Recommended Practice, Section 2.3, Limitations of Single Precision. Hint: SFVec3d can be used to specify a georeferenced 3D coordinate. Warning: comma characters within singleton values do not pass strict XML validation.
Related field object:
MFVec3d- See Also:
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final double[]Default value for this field type contains values of 0 0 0.static final StringDefault string value for this field type is "0.0 0.0 0.0".static final StringString constant NAME provides name of this element: SFVec3dstatic final PatternPrecompiled regular expression (regex) pattern for this field type using default REGEX value.static final StringDefault regular expression (regex) pattern for this field type is \s*(([+-]?static final intDefault tuple size for this field type is 3 (i.e. number of component values making up a single-field SF object).Fields inherited from class org.web3d.x3d.jsail.fields.X3DConcreteFieldvalidationResult
- 
Constructor SummaryConstructorsConstructorDescriptionSFVec3d()Constructor for SFVec3d performs value initialization.SFVec3d(double[] newValue) Constructor for SFVec3d using a corresponding Java primitive double[] array as new initial value.SFVec3d(double x, double y, double z) Utility constructor for SFVec3d using individual primitive values.SFVec3d(float[] newValue) Constructor for MFVec3f using an alternatively typed float[] array as new initial value.Constructor to copy an SFVec3d value as initial value for this new field object.
- 
Method SummaryModifier and TypeMethodDescriptionbooleanequals(double[] comparisonValue) Determine whether current SFVec3d object and double array contain equal values.booleanDetermine whether current object and another SFVec3d object contain equal values.double[]Provides current value of the field as a Java primitive type.voidgetValue(double[] valueDestination) Get the current value of this SFVec3d by copying it into the valueDestination array, leaving the current object unchanged.final voidInitialization for SFVec3d applies default initial value.static final booleanisArray()Whether or not this field type is an array (false)booleanDetermine whether current value matches DEFAULT_VALUEfinal booleanmatches()Test PATTERN match via regular expression (regex) check of current object's toString() value.static final booleanTest PATTERN match with regular expression (regex) of provided value.multiply(double scaleFactor) Multiply scaleFactor times all values in this field type.Utility method to normalize this vector value to unit length, ignore if zero length.voidsetValue(double[] newValue) Assign a new value to this field.setValue(double x, double y, double z) Assign a new value to this field.setValue(float[] newValue) Constructor for SFVec3d using a corresponding Java primitive float[] array as new initial value.Apply an SFVec3d value to this field.setValueArray(double[] newValue) Assign a new array value to this field, pipelined.setValueByString(String newValue) Utility accessor for SFVec3d using String value (which must pass parsing validation checks).double[]Provide double array for this field type.toString()Provides current value as a String.static StringtoString(double[] value) Static utility method to provide String representation of a correctly typed input value.final Stringvalidate()Validate current value via get/set comparison testsfinal StringValidate current value via regular expression (regex) check of current object's toString() value, reporting errors only if found.Methods inherited from class org.web3d.x3d.jsail.fields.X3DConcreteFieldaddX3DEventListener, getDefinition, getTupleSize, getValidationResult, isReadable, isWritable, removeX3DEventListener, setReadable, setWritable
- 
Field Details- 
NAMEString constant NAME provides name of this element: SFVec3d- See Also:
 
- 
DEFAULT_VALUEpublic static final double[] DEFAULT_VALUEDefault value for this field type contains values of 0 0 0.- See Also:
 
- 
DEFAULT_VALUE_STRINGDefault string value for this field type is "0.0 0.0 0.0".- See Also:
 
- 
TUPLE_SIZEpublic static final int TUPLE_SIZEDefault tuple size for this field type is 3 (i.e. number of component values making up a single-field SF object).- See Also:
 
- 
REGEXDefault regular expression (regex) pattern for this field type is \s*(([+-]?((0|[1-9][0-9]*)(\.[0-9]*)?|\.[0-9]+)([Ee][+-]?[0-9]+)?)\s+){2}([+-]?((0|[1-9][0-9]*)(\.[0-9]*)?|\.[0-9]+)([Ee][+-]?[0-9]+)?)\s*- See Also:
 
- 
PATTERNPrecompiled regular expression (regex) pattern for this field type using default REGEX value.- See Also:
 
 
- 
- 
Constructor Details- 
SFVec3dpublic SFVec3d()Constructor for SFVec3d performs value initialization.
- 
SFVec3dConstructor to copy an SFVec3d value as initial value for this new field object.- Parameters:
- newValue- The newValue to apply
 
- 
SFVec3dpublic SFVec3d(double[] newValue) Constructor for SFVec3d using a corresponding Java primitive double[] array as new initial value.- Parameters:
- newValue- is new value to assign Warning: newValue array length must correspond to tuple size for base type SFVec3d tuple size of 3. setContainerFieldOverride(containerFieldName); // apply checksConcreteField#getTupleSize(String)
 
- 
SFVec3dpublic SFVec3d(double x, double y, double z) Utility constructor for SFVec3d using individual primitive values.- Parameters:
- x- first component
- y- second component
- z- third component
- See Also:
 
- 
SFVec3dpublic SFVec3d(float[] newValue) Constructor for MFVec3f using an alternatively typed float[] array as new initial value.- Parameters:
- newValue- is new value to assign
 
 
- 
- 
Method Details- 
isArraypublic static final boolean isArray()Whether or not this field type is an array (false)- Returns:
- true if array type
 
- 
initializepublic final void initialize()Initialization for SFVec3d applies default initial value. Static initializer also provided to verify that the regex pattern compiles and matches that default value.- Specified by:
- initializein class- X3DConcreteField
- See Also:
 
- 
equalsDetermine whether current object and another SFVec3d object contain equal values.- Parameters:
- comparisonSFVec3d- field type to compare
- Returns:
- true if equivalent, false otherwise
 
- 
equalspublic boolean equals(double[] comparisonValue) Determine whether current SFVec3d object and double array contain equal values.- Parameters:
- comparisonValue- double[] array to compare
- Returns:
- true if equivalent, false otherwise
 
- 
validateValidate current value via get/set comparison tests- Returns:
- empty string if get/set testing passes, warning otherwise
- See Also:
 
- 
validateRegexValidate current value via regular expression (regex) check of current object's toString() value, reporting errors only if found.- Returns:
- empty string if PATTERN matches, warning otherwise
- See Also:
 
- 
matchespublic final boolean matches()Test PATTERN match via regular expression (regex) check of current object's toString() value.- Returns:
- true if PATTERN matches, false otherwise
- See Also:
 
- 
matchesTest PATTERN match with regular expression (regex) of provided value.- Parameters:
- value- String to check against regex pattern for successful match
- Returns:
- true if PATTERN matches, false otherwise
- See Also:
 
- 
setValueByStringUtility accessor for SFVec3d using String value (which must pass parsing validation checks).
 Warning: this method is not type safe at compile time! Best practice for X3DJSAIL programmers is to use strongly typed methods instead, in order to avoid potential for run-time errors.- Parameters:
- newValue- is new value to assign, if empty then assign DEFAULT_VALUE
- Returns:
- MFMatrix4d- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same node object).
- Throws:
- InvalidFieldValueException
- See Also:
 
- 
normalize
- 
toStringStatic utility method to provide String representation of a correctly typed input value.- Parameters:
- value- The value to convert to a String
- Returns:
- String version of the provided value, with trailing zeroes and decimal points omitted.
- See Also:
 
- 
getValue
- 
getPrimitiveValuepublic double[] getPrimitiveValue()Provides current value of the field as a Java primitive type.- Returns:
- current value
 
- 
toString
- 
setValue
- 
setValueArrayAssign a new array value to this field, pipelined. This is an alternate utility method since primary method returns void and cannot be overridden. Warning: newValue array length must correspond to tuple size for base type SFVec3d tuple size of 3.- Parameters:
- newValue- The replacement value to assign.
- Returns:
- SFVec3d- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
- See Also:
 
- 
setValueConstructor for SFVec3d using a corresponding Java primitive float[] array as new initial value.- Parameters:
- newValue- is new value to assign Warning: newValue array length must correspond to tuple size for base type SFVec3d tuple size of 3.
- Returns:
- SFVec3d- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
 
- 
setValue
- 
toDoubleArraypublic double[] toDoubleArray()Provide double array for this field type.- Returns:
- Array of doubles in this field array.
 
- 
setValue
- 
multiplyMultiply scaleFactor times all values in this field type.- Parameters:
- scaleFactor- scalar value for vector multiplication
- Returns:
- SFVec3d- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
 
- 
isDefaultValuepublic boolean isDefaultValue()Determine whether current value matches DEFAULT_VALUE- Returns:
- whether current value matches DEFAULT_VALUE
- See Also:
 
 
-