ThorVG  v0.15
Paintabstract

An abstract class for managing graphical elements. More...

Inheritance diagram for Paint:

Public Member Functions

Result rotate (float degree) noexcept
 Sets the angle by which the object is rotated. More...
 
Result scale (float factor) noexcept
 Sets the scale value of the object. More...
 
Result translate (float x, float y) noexcept
 Sets the values by which the object is moved in a two-dimensional space. More...
 
Result transform (const Matrix &m) noexcept
 Sets the matrix of the affine transformation for the object. More...
 
Matrix transform () noexcept
 Gets the matrix of the affine transformation of the object. More...
 
Result opacity (uint8_t o) noexcept
 Sets the opacity of the object. More...
 
Result composite (std::unique_ptr< Paint > target, CompositeMethod method) noexcept
 Sets the composition target object and the composition method. More...
 
Result clip (std::unique_ptr< Paint > clipper) noexcept
 Clip the drawing region of the paint object. More...
 
Result blend (BlendMethod method) noexcept
 Sets the blending method for the paint object. More...
 
TVG_DEPRECATED Result bounds (float *x, float *y, float *w, float *h) const noexcept
 
Result bounds (float *x, float *y, float *w, float *h, bool transformed) const noexcept
 Gets the axis-aligned bounding box of the paint object. More...
 
Paintduplicate () const noexcept
 Duplicates the object. More...
 
uint8_t opacity () const noexcept
 Gets the opacity value of the object. More...
 
CompositeMethod composite (const Paint **target) const noexcept
 Gets the composition target object and the composition method. More...
 
virtual Type type () const noexcept=0
 Returns the ID value of this class. More...
 
TVG_DEPRECATED uint32_t identifier () const noexcept
 

Public Attributes

uint32_t id = 0
 Unique ID of this instance. More...
 

Detailed Description

An abstract class for managing graphical elements.

A graphical element in TVG is any object composed into a Canvas. Paint represents such a graphical object and its behaviors such as duplication, transformation and composition. TVG recommends the user to regard a paint as a set of volatile commands. They can prepare a Paint and then request a Canvas to run them.

Member Function Documentation

◆ blend()

Result blend ( BlendMethod  method)
noexcept

Sets the blending method for the paint object.

The blending feature allows you to combine colors to create visually appealing effects, including transparency, lighting, shading, and color mixing, among others. its process involves the combination of colors or images from the source paint object with the destination (the lower layer image) using blending operations. The blending operation is determined by the chosen BlendMethod, which specifies how the colors or images are combined.

Parameters
[in]methodThe blending method to be set.
Note
Experimental API

◆ bounds() [1/2]

TVG_DEPRECATED Result bounds ( float *  x,
float *  y,
float *  w,
float *  h 
) const
noexcept

◆ bounds() [2/2]

Result bounds ( float *  x,
float *  y,
float *  w,
float *  h,
bool  transformed 
) const
noexcept

Gets the axis-aligned bounding box of the paint object.

Parameters
[out]xThe x-coordinate of the upper-left corner of the object.
[out]yThe y-coordinate of the upper-left corner of the object.
[out]wThe width of the object.
[out]hThe height of the object.
[in]transformedIf true, the paint's transformations are taken into account in the scene it belongs to. Otherwise they aren't.
Note
This is useful when you need to figure out the bounding box of the paint in the canvas space.
The bounding box doesn't indicate the actual drawing region. It's the smallest rectangle that encloses the object.
If transformed is true, the paint needs to be pushed into a canvas and updated before this api is called.
See also
Canvas::update()

◆ clip()

Result clip ( std::unique_ptr< Paint clipper)
noexcept

Clip the drawing region of the paint object.

This function restricts the drawing area of the paint object to the specified shape's paths.

Parameters
[in]clipperThe shape object as the clipper.
Return values
Result::NonSupportIf the clipper type is not Shape.
Note
clipper only supports the Shape type.
Experimental API

◆ composite() [1/2]

CompositeMethod composite ( const Paint **  target) const
noexcept

Gets the composition target object and the composition method.

Parameters
[out]targetThe paint of the target object.
Returns
The method used to composite the source object with the target.
Since
0.5

◆ composite() [2/2]

Result composite ( std::unique_ptr< Paint target,
CompositeMethod  method 
)
noexcept

Sets the composition target object and the composition method.

Parameters
[in]targetThe paint of the target object.
[in]methodThe method used to composite the source object with the target.

◆ duplicate()

Paint* duplicate ( ) const
noexcept

Duplicates the object.

Creates a new object and sets its all properties as in the original object.

Returns
The created object when succeed, nullptr otherwise.

◆ identifier()

TVG_DEPRECATED uint32_t identifier ( ) const
noexcept
See also
Paint::type()

◆ opacity() [1/2]

uint8_t opacity ( ) const
noexcept

Gets the opacity value of the object.

Returns
The opacity value in the range [0 ~ 255], where 0 is completely transparent and 255 is opaque.

◆ opacity() [2/2]

Result opacity ( uint8_t  o)
noexcept

Sets the opacity of the object.

Parameters
[in]oThe opacity value in the range [0 ~ 255], where 0 is completely transparent and 255 is opaque.
Note
Setting the opacity with this API may require multiple render pass for composition. It is recommended to avoid changing the opacity if possible.

◆ rotate()

Result rotate ( float  degree)
noexcept

Sets the angle by which the object is rotated.

The angle in measured clockwise from the horizontal axis. The rotational axis passes through the point on the object with zero coordinates.

Parameters
[in]degreeThe value of the angle in degrees.
Return values
Result::InsufficientConditionin case a custom transform is applied.
See also
Paint::transform()

◆ scale()

Result scale ( float  factor)
noexcept

Sets the scale value of the object.

Parameters
[in]factorThe value of the scaling factor. The default value is 1.
Return values
Result::InsufficientConditionin case a custom transform is applied.
See also
Paint::transform()

◆ transform() [1/2]

Matrix transform ( )
noexcept

Gets the matrix of the affine transformation of the object.

The values of the matrix can be set by the transform() API, as well by the translate(), scale() and rotate(). In case no transformation was applied, the identity matrix is returned.

Returns
The augmented transformation matrix.
Since
0.4

◆ transform() [2/2]

Result transform ( const Matrix m)
noexcept

Sets the matrix of the affine transformation for the object.

The augmented matrix of the transformation is expected to be given.

Parameters
[in]mThe 3x3 augmented matrix.

◆ translate()

Result translate ( float  x,
float  y 
)
noexcept

Sets the values by which the object is moved in a two-dimensional space.

The origin of the coordinate system is in the upper-left corner of the canvas. The horizontal and vertical axes point to the right and down, respectively.

Parameters
[in]xThe value of the horizontal shift.
[in]yThe value of the vertical shift.
Return values
Result::InsufficientConditionin case a custom transform is applied.
See also
Paint::transform()

◆ type()

virtual Type type ( ) const
pure virtualnoexcept

Returns the ID value of this class.

This method can be used to check the current concrete instance type.

Returns
The class type ID of the Paint instance.
Since
Experimental API

Implemented in Text, Scene, Picture, and Shape.

Member Data Documentation

◆ id

uint32_t id = 0

Unique ID of this instance.

This is reserved to specify an paint instance in a scene.

Since
Experimental API