Interface Disk2D

All Superinterfaces:
X3DGeometryNode, X3DNode
All Known Implementing Classes:
Disk2D

public interface Disk2D extends X3DGeometryNode
Disk2D is a geometry node that defines a filled (or partially filled) planar circle with center (0,0).

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: [X3DGeometryNode] Disk2D is a geometry node that defines a filled (or partially filled) planar circle with center (0,0). Hint: insert a Shape node before adding geometry or Appearance. Warning: requires X3D profile='Full' or else include &lt;component name='Geometry2D' level='2'/&gt; Examples: X3D Example Archives, X3D for Web Authors, Chapter 10 Geometry 2D <a href="https://www.web3d.org/x3d/content/examples/X3dForWebAuthors/Chapter10Geometry2D" target="_blank">https://www.web3d.org/x3d/content/examples/X3dForWebAuthors/Chapter10Geometry2D</a> *


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
    float
    Provide float value within allowed range of [0,infinity) from initializeOnly SFFloat field named innerRadius.
    Provide org.web3d.x3d.sai.Core.X3DMetadataObject instance (using a properly typed node) from inputOutput SFNode field metadata.
    float
    Provide float value within allowed range of (0,infinity) from initializeOnly SFFloat field named outerRadius.
    boolean
    Provide boolean value from initializeOnly SFBool field named solid.
    setInnerRadius(float newValue)
    Accessor method to assign float value to initializeOnly SFFloat field named innerRadius.
    Accessor method to assign org.web3d.x3d.sai.Core.X3DMetadataObject instance (using a properly typed node) to inputOutput SFNode field metadata.
    setOuterRadius(float newValue)
    Accessor method to assign float value to initializeOnly SFFloat field named outerRadius.
    setSolid(boolean newValue)
    Accessor method to assign boolean value to initializeOnly SFBool field named solid.
  • Method Details

    • getInnerRadius

      float getInnerRadius()
      Provide float value within allowed range of [0,infinity) from initializeOnly SFFloat field named innerRadius.

      Tooltip: [0,+infinity) Inner circle radius, greater than or equal to 0. Warning: simple-geometry dimensions are initializeOnly and cannot be changed after initial creation, avoiding the need for potentially expensive tessellation at run time. Hint: for size animation, modify the scale of a parent/ancestor Transform node instead. *
      Returns:
      value of innerRadius field
    • setInnerRadius

      Disk2D setInnerRadius(float newValue)
      Accessor method to assign float value to initializeOnly SFFloat field named innerRadius.

      Tooltip: [0,+infinity) Inner circle radius, greater than or equal to 0. Warning: simple-geometry dimensions are initializeOnly and cannot be changed after initial creation, avoiding the need for potentially expensive tessellation at run time. Hint: for size animation, modify the scale of a parent/ancestor Transform node instead. *
      Parameters:
      newValue - is new value for the innerRadius field.
      Returns:
      Disk2D - namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
    • 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 X3DGeometryNode
      Specified by:
      getMetadata in interface X3DNode
      Returns:
      value of metadata field
      See Also:
    • setMetadata

      Disk2D setMetadata(X3DMetadataObject newValue)
      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 X3DGeometryNode
      Specified by:
      setMetadata in interface X3DNode
      Parameters:
      newValue - is new value for the metadata field.
      Returns:
      Disk2D - namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
      See Also:
    • getOuterRadius

      float getOuterRadius()
      Provide float value within allowed range of (0,infinity) from initializeOnly SFFloat field named outerRadius.

      Tooltip: (0,+infinity) Outer radius of circle, greater than or equal to inner radius. Warning: simple-geometry dimensions are initializeOnly and cannot be changed after initial creation, avoiding the need for potentially expensive tessellation at run time. Hint: for size animation, modify the scale of a parent/ancestor Transform node instead. *
      Returns:
      value of outerRadius field
    • setOuterRadius

      Disk2D setOuterRadius(float newValue)
      Accessor method to assign float value to initializeOnly SFFloat field named outerRadius.

      Tooltip: (0,+infinity) Outer radius of circle, greater than or equal to inner radius. Warning: simple-geometry dimensions are initializeOnly and cannot be changed after initial creation, avoiding the need for potentially expensive tessellation at run time. Hint: for size animation, modify the scale of a parent/ancestor Transform node instead. *
      Parameters:
      newValue - is new value for the outerRadius field.
      Returns:
      Disk2D - namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
    • getSolid

      boolean getSolid()
      Provide boolean value from initializeOnly SFBool field named solid.

      Tooltip: Setting solid true means draw only one side of polygons (backface culling on), setting solid false means draw both sides of polygons (backface culling off). Hint: mnemonic "this geometry is solid like a brick" (you don't render the inside of a brick). Warning: default value true can completely hide geometry if viewed from wrong side! Hint: if in doubt, use solid='false' for maximum visibility. Warning: solid false not supported in VRML97. Hint: (X3D version 4.0 draft) accessType relaxed to inputOutput in order to support animation and visualization. *
      Returns:
      value of solid field
    • setSolid

      Disk2D setSolid(boolean newValue)
      Accessor method to assign boolean value to initializeOnly SFBool field named solid.

      Tooltip: Setting solid true means draw only one side of polygons (backface culling on), setting solid false means draw both sides of polygons (backface culling off). Hint: mnemonic "this geometry is solid like a brick" (you don't render the inside of a brick). Warning: default value true can completely hide geometry if viewed from wrong side! Hint: if in doubt, use solid='false' for maximum visibility. Warning: solid false not supported in VRML97. Hint: (X3D version 4.0 draft) accessType relaxed to inputOutput in order to support animation and visualization. *
      Parameters:
      newValue - is new value for the solid field.
      Returns:
      Disk2D - namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).