Class ElementCone
java.lang.Object
org.opensourcephysics.display3d.simple3d.Element
org.opensourcephysics.display3d.simple3d.AbstractTile
org.opensourcephysics.display3d.simple3d.ElementCone
- All Implemented Interfaces:
Element,ElementCone,InteractionSource
Title: ElementCylinder
Description: Painter's algorithm implementation of a Cylinder
- Version:
- March 2005
- Author:
- Francisco Esquembre
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsFields inherited from class org.opensourcephysics.display3d.simple3d.AbstractTile
corners, numberOfTilesFields inherited from class org.opensourcephysics.display3d.simple3d.Element
targetPosition, targetSizeFields inherited from interface org.opensourcephysics.display3d.core.Element
TARGET_POSITION, TARGET_SIZE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voidThis will be used by subclasses whenever there is a need to recompute the actual values of the corners before drawing.static XML.ObjectLoaderReturns an XML.ObjectLoader to save and load object data.intGets the maximum angle used to build the bottom and, if neccesary, top faces of the cone.intGets the minimum angle used to build the bottom and, if neccesary, top faces of the cone.doubleGets the truncation height for this cone.booleanWhether the cone is closed at its bottom.booleanWhether the element is closed at its left side.booleanWhether the element is closed at its right side.booleanWhether the cone is closed at its top.voidsetClosedBottom(boolean close) Whether the cone should be closed at its bottom.voidsetClosedLeft(boolean close) Whether an incomplete element should be closed at its left side.voidsetClosedRight(boolean close) Whether an incomplete element should be closed at its right side.voidsetClosedTop(boolean close) Whether an incomplete cone element should be closed at its top.voidsetMaximumAngle(int angle) Sets the maximum angle to build the bottom and, if neccesary, top faces of the cone.voidsetMinimumAngle(int angle) Sets the minimum angle to build the bottom and, if neccesary, top faces of the cone.voidsetTruncationHeight(double height) Sets the truncation height for this cone.Methods inherited from class org.opensourcephysics.display3d.simple3d.AbstractTile
getTargetHit, projectPoints, setColorBelowWhenEqual, setColorOriginAndDirection, setColorRegions, setCorners, setDrawQuickInteriorMethods inherited from class org.opensourcephysics.display3d.simple3d.Element
addInteractionListener, getAxesMode, getDrawingPanel3D, getHotSpotBodyCoordinates, getInteractionTarget, getName, getSizeX, getSizeY, getSizeZ, getStyle, getTransformation, getX, getY, getZ, isReallyVisible, isVisible, loadUnmutableObjects, removeInteractionListener, setName, setSizeX, setSizeXYZ, setSizeXYZ, setSizeY, setSizeZ, setTransformation, setVisible, setX, setXYZ, setXYZ, setY, setZ, toBodyFrame, toSpaceFrameMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.opensourcephysics.display3d.core.Element
getDrawingPanel3D, getName, getSizeX, getSizeY, getSizeZ, getStyle, getTransformation, getX, getY, getZ, isVisible, loadUnmutableObjects, setName, setSizeX, setSizeXYZ, setSizeXYZ, setSizeY, setSizeZ, setTransformation, setVisible, setX, setXYZ, setXYZ, setY, setZ, toBodyFrame, toSpaceFrameMethods inherited from interface org.opensourcephysics.display3d.core.interaction.InteractionSource
addInteractionListener, getInteractionTarget, removeInteractionListener
-
Field Details
-
TO_RADIANS
protected static final double TO_RADIANS- See Also:
-
-
Constructor Details
-
ElementCone
public ElementCone()
-
-
Method Details
-
setTruncationHeight
public void setTruncationHeight(double height) Description copied from interface:ElementConeSets the truncation height for this cone. The standard height of a cone is set using setSizeZ(). This method helps create truncated cones by setting the truncation height at a value smaller than the Z size. Negative, zero, or Double.NaN values set the cone to a standard (complete) one. Values greater than the Z size are ignored.- Specified by:
setTruncationHeightin interfaceElementCone- Parameters:
height- double
-
getTruncationHeight
public double getTruncationHeight()Description copied from interface:ElementConeGets the truncation height for this cone.- Specified by:
getTruncationHeightin interfaceElementCone- Returns:
- double The truncation height (Double.NaN if the cone is complete.)
- See Also:
-
#setTruncationHeight()
-
setClosedBottom
public void setClosedBottom(boolean close) Description copied from interface:ElementConeWhether the cone should be closed at its bottom.- Specified by:
setClosedBottomin interfaceElementCone- Parameters:
close- the desired value
-
isClosedBottom
public boolean isClosedBottom()Description copied from interface:ElementConeWhether the cone is closed at its bottom.- Specified by:
isClosedBottomin interfaceElementCone- Returns:
- the value
-
setClosedTop
public void setClosedTop(boolean close) Description copied from interface:ElementConeWhether an incomplete cone element should be closed at its top.- Specified by:
setClosedTopin interfaceElementCone
-
isClosedTop
public boolean isClosedTop()Description copied from interface:ElementConeWhether the cone is closed at its top.- Specified by:
isClosedTopin interfaceElementCone- Returns:
- the value
-
setClosedLeft
public void setClosedLeft(boolean close) Description copied from interface:ElementConeWhether an incomplete element should be closed at its left side.- Specified by:
setClosedLeftin interfaceElementCone
-
isClosedLeft
public boolean isClosedLeft()Description copied from interface:ElementConeWhether the element is closed at its left side.- Specified by:
isClosedLeftin interfaceElementCone- Returns:
- the value
-
setClosedRight
public void setClosedRight(boolean close) Description copied from interface:ElementConeWhether an incomplete element should be closed at its right side.- Specified by:
setClosedRightin interfaceElementCone
-
isClosedRight
public boolean isClosedRight()Description copied from interface:ElementConeWhether the element is closed at its right side.- Specified by:
isClosedRightin interfaceElementCone- Returns:
- the value
-
setMinimumAngle
public void setMinimumAngle(int angle) Description copied from interface:ElementConeSets the minimum angle to build the bottom and, if neccesary, top faces of the cone. Default is 0.- Specified by:
setMinimumAnglein interfaceElementCone- Parameters:
angle- the minimum angle (in degrees)
-
getMinimumAngle
public int getMinimumAngle()Description copied from interface:ElementConeGets the minimum angle used to build the bottom and, if neccesary, top faces of the cone.- Specified by:
getMinimumAnglein interfaceElementCone- Returns:
- the minimum angle (in degrees)
-
setMaximumAngle
public void setMaximumAngle(int angle) Description copied from interface:ElementConeSets the maximum angle to build the bottom and, if neccesary, top faces of the cone. Default is 360.- Specified by:
setMaximumAnglein interfaceElementCone- Parameters:
angle- the maximum angle (in degrees)
-
getMaximumAngle
public int getMaximumAngle()Description copied from interface:ElementConeGets the maximum angle used to build the bottom and, if neccesary, top faces of the cone.- Specified by:
getMaximumAnglein interfaceElementCone- Returns:
- the maximum angle (in degrees)
-
computeCorners
protected void computeCorners()Description copied from class:AbstractTileThis will be used by subclasses whenever there is a need to recompute the actual values of the corners before drawing. Synchronization is recomended.- Specified by:
computeCornersin classAbstractTile
-
getLoader
Returns an XML.ObjectLoader to save and load object data.- Returns:
- the XML.ObjectLoader
-