Package | Description |
---|---|
org.scijava.java3d |
Provides the core set of classes for the
3D graphics API for the Java platform; click here for more information,
including explanatory material that was formerly found in the guide.
|
org.scijava.java3d.utils.pickfast |
Provides picking utility classes for the new core picking methods.
|
Modifier and Type | Method and Description |
---|---|
PickInfo[] |
Locale.pickAll(int mode,
int flags,
PickShape pickShape)
Returns an array unsorted references to all the PickInfo objects that are pickable
below this
Locale that intersect with PickShape. |
PickInfo[] |
BranchGroup.pickAll(int mode,
int flags,
PickShape pickShape)
Returns an array unsorted references to all the PickInfo objects that are
pickable below this
BranchGroup that intersect with PickShape. |
PickInfo[] |
Locale.pickAllSorted(int mode,
int flags,
PickShape pickShape)
Returns a sorted array of PickInfo references to all the pickable
items that intersect with the pickShape.
|
PickInfo[] |
BranchGroup.pickAllSorted(int mode,
int flags,
PickShape pickShape)
Returns a sorted array of PickInfo references to all the pickable
items that intersect with the pickShape.
|
PickInfo |
Locale.pickAny(int mode,
int flags,
PickShape pickShape)
Returns a PickInfo which references the pickable item below this
Locale which intersects with
pickShape . |
PickInfo |
BranchGroup.pickAny(int mode,
int flags,
PickShape pickShape)
Returns a PickInfo which references the pickable item below this
BranchGroup that intersects with
pickShape . |
PickInfo |
Locale.pickClosest(int mode,
int flags,
PickShape pickShape)
Returns a PickInfo which references the pickable item
which is closest to the origin of
pickShape . |
PickInfo |
BranchGroup.pickClosest(int mode,
int flags,
PickShape pickShape)
Returns a PickInfo which references the pickable item
which is closest to the origin of
pickShape . |
Modifier and Type | Method and Description |
---|---|
PickInfo[] |
PickTool.pickAll()
Selects all the nodes that intersect the PickShape.
|
PickInfo[] |
PickTool.pickAllSorted()
Select all the nodes that intersect the
PickShape, returned sorted.
|
PickInfo |
PickTool.pickAny()
Select one of the nodes that intersect the PickShape
|
PickInfo |
PickTool.pickClosest()
Select the closest node that
intersects the PickShape.
|
Modifier and Type | Method and Description |
---|---|
Node |
PickTool.getNode(PickInfo pickInfo,
int type)
Get the first node of a certain type up the SceneGraphPath
|
Copyright © 2016–2022 SciJava. All rights reserved.