Scroll to navigation

pod::Prima::types(3) User Contributed Perl Documentation pod::Prima::types(3)

NAME

Prima::types - builtin types

DESCRIPTION

Auxiliary second-citizen classes that are not usually created manually but used as results of Prima methods and accepted as inputs. These classes names can be distinguished that their name is started by a lower-case letter.

Prima::array

Overloaded C array that can be used transparently as a normal perl array of numbers. The reason "Prima::array" exists is that Prima methods don't need to do expensive conversions between a perl array of scalars to C array of integers or floats.

Creates a new C array with type either int, double, short, and unsigned short. There are also methods "new_int", "new_double", "new_short", and "new_ushort" that to the same.

BUF, a normal perl string, can be used to initialize the array, if any (and can be pre-populated with pack()). Otherwise an array is created as empty.

Checks whether SCALAR is a "Prima::array" object.
Emulates perl's "substr" except operates not on character but C type level. Returns a new "Prima::array" object.
Assuming two arrays have same type, appends the ARRAY's contents to own content.
Clones the array.

Prima::matrix

An array of 6 doubles with some helper methods attached.

Named accessory properties for the 6 members. The members can just as well be accessed directly with array syntax.
Clones the matrix object
Resets the matrix to identity
Applies inverse matrix tranformations to an array or arrayref of points, and returns in the same format (i e array for array, ref for ref).
Creates a new object and optionally initializes it with @ARRAY
Multiplies the matrices and stores the result
Rotates the matrix
Scales the matrix
Shears the matrix
Assigns all 6 members at once
Translates the matrix
Applies matrix tranformations to an array or arrayref of points, and returns in the same format (i e array for array, ref for ref).

See also: Prima::Matrix

Prima::Matrix

Same as "Prima::matrix" but explicitly binds to drawable objects, so that all changes to the matrix are immediately reflected in the drawable.

Features all the methods available to "Prima::matrix" (except "apply"), plus the ones described below.

Creates new instance
Accesses the associated drawable object
Returns the current matrix
Sets matrix to "Prima::matrix::identity", or (1,0,0,1,0,0)
Saves and restores the matrix content in the internal stack

Prima::rect

Represents rectangular object either as rectangle ( X1,Y1,X2,Y2 ) or box ( X,Y,WIDTH,HEIGHT ).

Returns X, Y, WIDTH, HEIGHT
Clones the object
Enlarges the rectangle by N
Rectangle itself is agnostic of its 2D presentation, but assuming the coordinates are inclusive-exclusive, "inclusive" returns X1,Y1,X2,Y2 as inclusive-inclusive rectangle.
Intersects with RECT and stores the result
Returns true if rectangle's width and height are zero
Returns true if both rectangles are equal
Creates new object with rectangle syntax
Creates new object with box syntax
Returns X,Y
Shrinks the rectangle by N
Return WIDTH and HEIGHT
Joins with RECT and stores the result

AUTHOR

Dmitry Karasik, <dmitry@karasik.eu.org>.

SEE ALSO

Prima

2023-09-05 perl v5.26.1