Class PoGroup2Axis
- All Implemented Interfaces:
SafeDisposable
The graduations of these axes are defined by the fields gradStart
and gradEnd
. However if these fields are equal, the fields start
and end
are used to define the graduation values.
File format/default:
start | 0 0 |
end | 1 1 |
gradStart | 0 0 |
gradEnd | 0 0 |
xTitle | "" |
yTitle | "" |
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class com.openinventor.meshviz.graph.PoBase
PoBase.NodeWriteFormats, PoBase.TextTypes, PoBase.UpdateMethodTypes
Nested classes/interfaces inherited from class com.openinventor.inventor.nodes.SoNode
SoNode.RenderModes
Nested classes/interfaces inherited from class com.openinventor.inventor.Inventor
Inventor.ConstructorCommand
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal SoSFVec2f
Defines the end point of the both axis.final SoSFVec2f
Defines the value of the graduation (tick label) corresponding to the end point of this group of axes.final SoSFVec2f
Defines the value of the graduation (tick label) corresponding to the starting point of this group of axes.final SoSFVec2f
Start point of the both axis.final SoSFString
Title of the horizontal axis.final SoSFString
Title of the vertical axis.Fields inherited from class com.openinventor.inventor.nodekits.SoBaseKit
boundingBoxIgnoring
Fields inherited from class com.openinventor.inventor.Inventor
VERBOSE_LEVEL, ZeroHandle
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.PoGroup2Axis
(SbVec2f _start, SbVec2f _end, PoGroup2Axis.AxisTypes _xAxisType, PoGroup2Axis.AxisTypes _yAxisType) Calls PoGroup2Axis(_start, _end, _xAxisType, _yAxisType, (java.lang.String)null, (java.lang.String)null).PoGroup2Axis
(SbVec2f _start, SbVec2f _end, PoGroup2Axis.AxisTypes _xAxisType, PoGroup2Axis.AxisTypes _yAxisType, String xTtle) Calls PoGroup2Axis(_start, _end, _xAxisType, _yAxisType, xTtle, (java.lang.String)null).PoGroup2Axis
(SbVec2f _start, SbVec2f _end, PoGroup2Axis.AxisTypes _xAxisType, PoGroup2Axis.AxisTypes _yAxisType, String xTtle, String yTtle) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionstatic SoNodekitCatalog
Returns theSoNodekitCatalog
for this class.Methods inherited from class com.openinventor.meshviz.graph.PoBase
addPostRebuildCallback, addPreRebuildCallback, getDomain, getNodeWriteFormat, getTextType, getUpdateMethod, isBuilt, isModified, isVRML2Mode, rebuild, setDomain, setNodeWriteFormat, setTextType, setUpdateMethod, setVRML2Mode, touchKit
Methods inherited from class com.openinventor.inventor.nodekits.SoBaseKit
getNodekitCatalog, getPart, getPart, getPartString, getViewportIsEnabled, getViewportOrigin, getViewportSize, isSearchingChildren, set, set, setPart, setSearchingChildren
Methods inherited from class com.openinventor.inventor.nodes.SoNode
affectsState, callback, copy, copy, distribute, doAction, getAlternateRep, getBoundingBox, getByName, getMatrix, getPrimitiveCount, getRenderEngineMode, getRenderUnitID, GLRender, GLRenderBelowPath, GLRenderInPath, GLRenderOffPath, grabEventsCleanup, grabEventsSetup, handleEvent, isBoundingBoxIgnoring, isOverride, pick, rayPick, search, setOverride, touch, write
Methods inherited from class com.openinventor.inventor.fields.SoFieldContainer
copyFieldValues, copyFieldValues, enableNotify, fieldsAreEqual, get, getAllFields, getEventIn, getEventOut, getField, getFieldName, hasDefaultValues, isNotifyEnabled, setToDefaults
Methods inherited from class com.openinventor.inventor.misc.SoBase
dispose, getName, isDisposable, isSynchronizable, setName, setSynchronizable
Methods inherited from class com.openinventor.inventor.Inventor
getNativeResourceHandle
-
Field Details
-
start
Start point of the both axis. (0,0) by default. -
end
Defines the end point of the both axis. The X-axis is generated from the point "start" to the point (end[0], start[1]). The Y-axis is generated from the point start to the point (start[0], end[1]). (1,1) by default. -
gradStart
Defines the value of the graduation (tick label) corresponding to the starting point of this group of axes. SeePoCartesianAxis.gradStart
for details.- Since:
- Open Inventor 9.5.1
-
gradEnd
Defines the value of the graduation (tick label) corresponding to the end point of this group of axes. SeePoCartesianAxis.gradEnd
for details.- Since:
- Open Inventor 9.5.1
-
xTitle
Title of the horizontal axis. Empty by default. -
yTitle
Title of the vertical axis. Empty by default.
-
-
Constructor Details
-
PoGroup2Axis
public PoGroup2Axis(SbVec2f _start, SbVec2f _end, PoGroup2Axis.AxisTypes _xAxisType, PoGroup2Axis.AxisTypes _yAxisType, String xTtle) Calls PoGroup2Axis(_start, _end, _xAxisType, _yAxisType, xTtle, (java.lang.String)null). -
PoGroup2Axis
public PoGroup2Axis(SbVec2f _start, SbVec2f _end, PoGroup2Axis.AxisTypes _xAxisType, PoGroup2Axis.AxisTypes _yAxisType) Calls PoGroup2Axis(_start, _end, _xAxisType, _yAxisType, (java.lang.String)null, (java.lang.String)null). -
PoGroup2Axis
public PoGroup2Axis(SbVec2f _start, SbVec2f _end, PoGroup2Axis.AxisTypes _xAxisType, PoGroup2Axis.AxisTypes _yAxisType, String xTtle, String yTtle) Constructor. -
PoGroup2Axis
public PoGroup2Axis()Default constructor.
-
-
Method Details
-
getClassNodekitCatalog
Returns theSoNodekitCatalog
for this class.
-