Trackball

from panda3d.core import Trackball
class Trackball

Bases:

Bases: MouseInterfaceNode

Trackball acts like Performer in trackball mode. It can either spin around a piece of geometry directly, or it can spin around a camera with the inverse transform to make it appear that the whole world is spinning.

The Trackball object actually just places a transform in the data graph; parent a Transform2SG node under it to actually transform objects (or cameras) in the world.

Inheritance diagram

Inheritance diagram of Trackball

enum ControlMode
enumerator CM_default = 0
enumerator CM_truck = 1

Normally mouse 1

enumerator CM_pan = 2

Normally mouse 2

enumerator CM_dolly = 3

Normally mouse 3

enumerator CM_roll = 4

Normally mouse 2 + 3

__init__(param0: Trackball)
__init__(name: str)
static getClassType() TypeHandle
getControlMode() ControlMode

Returns the control mode. See setControlMode().

getCoordinateSystem() CoordinateSystem

Returns the coordinate system of the Trackball. See setCoordinateSystem().

getForwardScale() float

Returns the scale factor applied to forward and backward motion. See setForwardScale().

getH() float
getHpr() LVecBase3

Return the trackball’s orientation.

getInvert() bool

Returns the invert flag. When this is set, the inverse matrix is generated, suitable for joining to a camera, instead of parenting the scene under it.

getMat() LMatrix4

Returns the matrix represented by the trackball rotation.

getOrigin() LPoint3

Returns the current center of rotation.

getP() float
getPos() LPoint3

Return the offset from the center of rotation.

getR() float
getRelTo() NodePath

Returns the NodePath that all trackball manipulations are relative to, or the empty path.

getTransMat() LMatrix4

Returns the actual transform that will be applied to the scene graph. This is the same as getMat(), unless invert is in effect.

getX() float
getY() float
getZ() float
moveOrigin(x: float, y: float, z: float)

Moves the center of rotation by the given amount.

reset()

Reinitializes all transforms to identity.

resetOriginHere()

Reposition the center of rotation to coincide with the current translation offset. Future rotations will be about the current origin.

setControlMode(control_mode: ControlMode)

Sets the control mode. Normally this is CM_default, which means each mouse button serves its normal function. When it is CM_truck, CM_pan, CM_dolly, or CM_roll, all of the mouse buttons serve the indicated function instead of their normal function. This can be used in conjunction with some external way of changing modes.

setCoordinateSystem(cs: CoordinateSystem)

Sets the coordinate system of the Trackball. Normally, this is the default coordinate system. This changes the axes the Trackball manipulates so that the user interface remains consistent across different coordinate systems.

setForwardScale(fwdscale: float)

Changes the scale factor applied to forward and backward motion. The larger this number, the faster the model will move in response to dollying in and out.

setH(h: float)
setHpr(hpr: LVecBase3)

Directly set the mover’s orientation.

setHpr(h: float, p: float, r: float)
setInvert(flag: bool)

Sets the invert flag. When this is set, the inverse matrix is generated, suitable for joining to a camera, instead of parenting the scene under it.

setMat(mat: LMatrix4)

Stores the indicated transform in the trackball. This is a transform in global space, regardless of the rel_to node.

setOrigin(origin: LVecBase3)

Directly sets the center of rotation.

setP(p: float)
setPos(vec: LVecBase3)

Directly set the offset from the rotational origin.

setPos(x: float, y: float, z: float)
setR(r: float)
setRelTo(rel_to: NodePath)

Sets the NodePath that all trackball manipulations are to be assumed to be relative to. For instance, set your camera node here to make the trackball motion camera relative. The default is the empty path, which means trackball motion is in global space.

setX(x: float)
setY(y: float)
setZ(z: float)