Interface IThreeDFormat
public interface IThreeDFormat
Represents a shape's three-dimensional formatting.
-
Method Summary
Modifier and TypeMethodDescriptiondoublegetDepth()Gets the depth of the shape's extrusion.intGets whether the extrusion appears in perspective.doubleGets the rotation of the extruded shape around the x-axis in degrees.doubleGets the rotation of the extruded shape around the y-axis in degrees.doubleGets the rotation of the extruded shape around the z-axis in degrees.booleanGets whether the object is visible.doublegetZ()Returns the Z order of the specifiedIThreeDFormatobject.voidResets the extrusion rotation around the x-axis and the y-axis to 0 (zero) so that the front of the extrusion faces forward.voidsetDepth(double value) Sets the depth of the shape's extrusion.voidsetPerspective(int value) Sets whether the extrusion appears in perspective.voidsetRotationX(double value) Sets the rotation of the extruded shape around the x-axis in degrees.voidsetRotationY(double value) Sets the rotation of the extruded shape around the y-axis in degrees.voidsetRotationZ(double value) Sets the rotation of the extruded shape around the z-axis in degrees.voidsetVisible(boolean value) Sets whether the object is visible.voidsetZ(double value) Sets the Z order of the specifiedIThreeDFormatobject.
-
Method Details
-
getDepth
double getDepth()Gets the depth of the shape's extrusion. -
setDepth
void setDepth(double value) Sets the depth of the shape's extrusion. -
getPerspective
int getPerspective()Gets whether the extrusion appears in perspective. -
setPerspective
void setPerspective(int value) Sets whether the extrusion appears in perspective. -
getRotationX
double getRotationX()Gets the rotation of the extruded shape around the x-axis in degrees. -
setRotationX
void setRotationX(double value) Sets the rotation of the extruded shape around the x-axis in degrees. -
getRotationY
double getRotationY()Gets the rotation of the extruded shape around the y-axis in degrees. -
setRotationY
void setRotationY(double value) Sets the rotation of the extruded shape around the y-axis in degrees. -
getRotationZ
double getRotationZ()Gets the rotation of the extruded shape around the z-axis in degrees. -
setRotationZ
void setRotationZ(double value) Sets the rotation of the extruded shape around the z-axis in degrees. -
getVisible
boolean getVisible()Gets whether the object is visible. -
setVisible
void setVisible(boolean value) Sets whether the object is visible. -
getZ
double getZ()Returns the Z order of the specifiedIThreeDFormatobject. -
setZ
void setZ(double value) Sets the Z order of the specifiedIThreeDFormatobject. -
resetRotation
void resetRotation()Resets the extrusion rotation around the x-axis and the y-axis to 0 (zero) so that the front of the extrusion faces forward.
-