Class PoGroup4Axis
- 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
End point of the top horizontal axis and of the right vertical 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 bottom horizontal axis and of the left vertical axis.final SoSFString
Title of the horizontal axes.final SoSFString
Title of the vertical axes.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.PoGroup4Axis
(SbVec2f _start, SbVec2f _end, PoGroup4Axis.AxisTypes _xAxisType, PoGroup4Axis.AxisTypes _yAxisType) Calls PoGroup4Axis(_start, _end, _xAxisType, _yAxisType, (java.lang.String)null, (java.lang.String)null).PoGroup4Axis
(SbVec2f _start, SbVec2f _end, PoGroup4Axis.AxisTypes _xAxisType, PoGroup4Axis.AxisTypes _yAxisType, String xTtle) Calls PoGroup4Axis(_start, _end, _xAxisType, _yAxisType, xTtle, (java.lang.String)null).PoGroup4Axis
(SbVec2f _start, SbVec2f _end, PoGroup4Axis.AxisTypes _xAxisType, PoGroup4Axis.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 bottom horizontal axis and of the left vertical axis. The first X-axis is generated from the point "start" to the point (end[0], start[1]). The second X-axis is generated from the point (start[0], end[1]) to the point "end". The first Y-axis is generated from the point "start" to the point (start[0], end[1]). The second Y-axis is generated from the point (end[0], start[1]) to the point "end". -
end
End point of the top horizontal axis and of the right vertical axis. -
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 axes. Empty by default. -
yTitle
Title of the vertical axes. Empty by default.
-
-
Constructor Details
-
PoGroup4Axis
public PoGroup4Axis(SbVec2f _start, SbVec2f _end, PoGroup4Axis.AxisTypes _xAxisType, PoGroup4Axis.AxisTypes _yAxisType, String xTtle) Calls PoGroup4Axis(_start, _end, _xAxisType, _yAxisType, xTtle, (java.lang.String)null). -
PoGroup4Axis
public PoGroup4Axis(SbVec2f _start, SbVec2f _end, PoGroup4Axis.AxisTypes _xAxisType, PoGroup4Axis.AxisTypes _yAxisType) Calls PoGroup4Axis(_start, _end, _xAxisType, _yAxisType, (java.lang.String)null, (java.lang.String)null). -
PoGroup4Axis
public PoGroup4Axis(SbVec2f _start, SbVec2f _end, PoGroup4Axis.AxisTypes _xAxisType, PoGroup4Axis.AxisTypes _yAxisType, String xTtle, String yTtle) Constructor. (By default the 4 axes are linear axes). -
PoGroup4Axis
public PoGroup4Axis()Default constructor.
-
-
Method Details
-
getClassNodekitCatalog
Returns theSoNodekitCatalog
for this class.
-