|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ZSceneGraphPath | |
edu.umd.cs.jazz | Jazz is a general-purpose Java-based engine that supports 2D visualizations. |
edu.umd.cs.jazz.component | This package contains several visual components that may be useful for Jazz applications. |
edu.umd.cs.jazz.event | This package supports Jazz event handlers. |
edu.umd.cs.jazz.util | This package defines several utility classes that are likely to be useful for Jazz applications. |
Uses of ZSceneGraphPath in edu.umd.cs.jazz |
Methods in edu.umd.cs.jazz that return ZSceneGraphPath | |
ZSceneGraphPath |
ZDrawingSurface.pick(int x,
int y)
Returns the path to the first object intersecting the specified rectangle within DEFAULT_HALO pixels as searched in reverse (front-to-back) order, or null if no objects satisfy criteria. |
ZSceneGraphPath |
ZDrawingSurface.pick(int x,
int y,
int halo)
Returns the path to the first object intersecting the specified rectangle within halo pixels as searched in reverse (front-to-back) order, or null if no objects satisfy criteria. |
Methods in edu.umd.cs.jazz with parameters of type ZSceneGraphPath | |
boolean |
ZVisualComponent.pick(java.awt.geom.Rectangle2D rect,
ZSceneGraphPath path)
Determines whether the specified rectangle (in local coordinates) should "pick" this visual component. |
boolean |
ZNode.pick(java.awt.geom.Rectangle2D rect,
ZSceneGraphPath path)
Returns the first object under the specified rectangle (if there is one) in the subtree rooted with this as searched in reverse (front-to-back) order. |
boolean |
ZGroup.pick(java.awt.geom.Rectangle2D rect,
ZSceneGraphPath path)
Returns the first object under the specified rectangle (if there is one) in the subtree rooted with this as searched in reverse (front-to-back) order. |
boolean |
ZVisualLeaf.pick(java.awt.geom.Rectangle2D rect,
ZSceneGraphPath path)
Returns true if any of this node's visual components are under the specified rectangle, and builds a ZSceneGraphPath to the node. |
boolean |
ZClipGroup.pick(java.awt.geom.Rectangle2D rect,
ZSceneGraphPath path)
Pick is overiden so that we can take the clip into consideration when picking. |
boolean |
ZVisualGroup.pick(java.awt.geom.Rectangle2D rect,
ZSceneGraphPath path)
Returns the first object under the specified rectangle (if there is one) in the subtree rooted with this as searched in reverse (front-to-back) order. |
boolean |
ZSelectionGroup.pick(java.awt.geom.Rectangle2D rect,
ZSceneGraphPath path)
ZSelectionGroup overrides this method to check whether any of the auxiliary visual components have been picked. |
boolean |
ZTransformGroup.pick(java.awt.geom.Rectangle2D rect,
ZSceneGraphPath path)
Returns the first object under the specified rectangle (if there is one) in the subtree rooted with this as searched in reverse (front-to-back) order. |
boolean |
ZFadeGroup.isVisible(ZSceneGraphPath path)
Determines if this fade node is visible. |
boolean |
ZFadeGroup.pick(java.awt.geom.Rectangle2D rect,
ZSceneGraphPath path)
Returns the first object under the specified rectangle (if there is one) in the subtree rooted with this as searched in reverse (front-to-back) order. |
boolean |
ZInvisibleGroup.pick(java.awt.geom.Rectangle2D rect,
ZSceneGraphPath path)
An invisible node never gets picked, nor does it pick any of its children. |
boolean |
ZSpatialIndexGroup.pick(java.awt.geom.Rectangle2D rect,
ZSceneGraphPath path)
Returns the first object under the specified rectangle (if there is one) in the subtree rooted with this ZSpatialIndexGroup node, as searched in reverse (front-to-back) order. |
boolean |
ZCamera.pick(java.awt.geom.Rectangle2D rect,
ZSceneGraphPath path)
Picks the first object under the specified rectangle (if there is one) as searched in reverse (front-to-back) order. |
Uses of ZSceneGraphPath in edu.umd.cs.jazz.component |
Methods in edu.umd.cs.jazz.component with parameters of type ZSceneGraphPath | |
boolean |
ZShape.pick(java.awt.geom.Rectangle2D rect,
ZSceneGraphPath path)
Returns true if the specified rectangle is on the polygon. |
boolean |
ZPolyline.pick(java.awt.geom.Rectangle2D rect,
ZSceneGraphPath path)
|
Uses of ZSceneGraphPath in edu.umd.cs.jazz.event |
Methods in edu.umd.cs.jazz.event that return ZSceneGraphPath | |
ZSceneGraphPath |
ZMouseEvent.getPath()
Determine the path the event took from the ZCanvas down to the visual component. |
ZSceneGraphPath |
ZMouseEvent.getGrabPath()
Return the path from the ZCanvas down to the currently grabbed object. |
ZSceneGraphPath |
ZMouseEvent.getCurrentPath()
Get the path from the ZCanvas down to the visual component currently under the mouse.This may give a different result then getGrabPath() durring a MOUSE_DRAGGED or MOUSE_RELEASED operation. |
Methods in edu.umd.cs.jazz.event with parameters of type ZSceneGraphPath | |
static ZMouseEvent |
ZMouseEvent.createMouseEvent(int id,
java.awt.event.MouseEvent e,
ZSceneGraphPath path,
ZSceneGraphPath mouseOverPath)
Creates and returns a new ZMouse event from a Java MouseEvent. |
protected ZCamera |
ZoomToEventHandler.getCameraToZoomWith(ZSceneGraphPath aPath)
Get the camera from the scene graph path that we will use to perform the zoom. |
protected ZNode |
ZoomToEventHandler.getNodeToZoomTo(ZSceneGraphPath aPath)
Get the node the use for the target of the zoom. |
Constructors in edu.umd.cs.jazz.event with parameters of type ZSceneGraphPath | |
ZMouseEvent(int id,
java.awt.event.MouseEvent e,
ZSceneGraphPath aGrabPath,
ZSceneGraphPath aCurrentPath)
Deprecated. as of Jazz 1.1, use createMouseEvent() instead. |
|
ZMouseEvent(int id,
ZNode aNode,
java.awt.event.MouseEvent e,
ZSceneGraphPath aGrabPath)
Deprecated. as of Jazz 1.1, use createMouseEvent() instead. |
|
ZMouseEvent(int id,
java.awt.event.MouseEvent e,
ZSceneGraphPath aGrabPath,
ZSceneGraphPath aCurrentPath,
java.lang.Object dummy)
|
|
ZMouseMotionEvent(int id,
java.awt.event.MouseEvent e,
ZSceneGraphPath path,
ZSceneGraphPath mouseOverPath)
Constructs a new ZMouse event from a Java MouseEvent. |
Uses of ZSceneGraphPath in edu.umd.cs.jazz.util |
Methods in edu.umd.cs.jazz.util with parameters of type ZSceneGraphPath | |
ZSceneGraphObject |
ZListImpl.ZNodeListImpl.collectivePick(java.awt.geom.Rectangle2D rect,
ZSceneGraphPath path)
|
ZSceneGraphObject |
ZListImpl.ZVisualComponentListImpl.collectivePick(java.awt.geom.Rectangle2D rect,
ZSceneGraphPath path)
|
ZSceneGraphObject |
ZNullList.collectivePick(java.awt.geom.Rectangle2D rect,
ZSceneGraphPath path)
|
ZSceneGraphObject |
ZList.ZNodeList.collectivePick(java.awt.geom.Rectangle2D rect,
ZSceneGraphPath path)
|
ZSceneGraphObject |
ZList.ZVisualComponentList.collectivePick(java.awt.geom.Rectangle2D rect,
ZSceneGraphPath path)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |