ScissorAttrib

from panda3d.core import ScissorAttrib
class ScissorAttrib

Bases:

Bases: RenderAttrib

This restricts rendering to within a rectangular region of the scene, without otherwise affecting the viewport or lens properties. Geometry that falls outside the scissor region is not rendered. It is akin to the OpenGL glScissor() function.

The ScissorAttrib always specifies its region relative to its enclosing DisplayRegion, in screen space, and performs no culling.

See ScissorEffect if you wish to define a region relative to 2-D or 3-D coordinates in the scene graph, with culling.

Inheritance diagram

Inheritance diagram of ScissorAttrib

property class_slot int
property frame LVecBase4

Returns the left, right, bottom, top coordinates of the scissor frame. This defines a frame within the current DisplayRegion, where 0,0 is the lower-left corner of the DisplayRegion, and 1,1 is the upper-right corner.

static getClassSlot() int
static getClassType() TypeHandle
getFrame() LVecBase4

Returns the left, right, bottom, top coordinates of the scissor frame. This defines a frame within the current DisplayRegion, where 0,0 is the lower-left corner of the DisplayRegion, and 1,1 is the upper-right corner.

isOff() bool

Returns true if the ScissorAttrib is an ‘off’ ScissorAttrib, indicating that scissor testing is disabled.

static make(frame: LVecBase4) RenderAttrib

Constructs a ScissorAttrib that restricts rendering to the indicated frame within the current DisplayRegion. (0,0) is the lower-left corner of the DisplayRegion, and (1,1) is the upper-right corner.

static make(left: float, right: float, bottom: float, top: float) RenderAttrib

Constructs a ScissorAttrib that restricts rendering to the indicated frame within the current DisplayRegion. (0,0) is the lower-left corner of the DisplayRegion, and (1,1) is the upper-right corner.

static makeDefault() RenderAttrib

Returns a RenderAttrib that corresponds to whatever the standard default properties for render attributes of this type ought to be.

static makeOff() RenderAttrib

Constructs a new ScissorAttrib object that removes the scissor region and fills the DisplayRegion.