Epok Engine

EPOK RUNTIME

epok::RectTransformComponent::set_anchors

Method · 1 overload

Method

Sets anchors as part of the object model module.

Belongs to
epok::RectTransformComponent
Header
object_model.hpp
Overloads
1

Declaration

Declaration
void set_anchors(Fixed min_x,Fixed min_y,Fixed max_x,Fixed max_y)

Sets anchors as part of the object model module.

ParameterTypeMeaning
min_xFixedValue supplied for min_x. Keep referenced or pointed-to data valid for the complete call.
min_yFixedValue supplied for min_y. Keep referenced or pointed-to data valid for the complete call.
max_xFixedValue supplied for max_x. Keep referenced or pointed-to data valid for the complete call.
max_yFixedValue supplied for max_y. Keep referenced or pointed-to data valid for the complete call.

Returns: Nothing (void).

Example

C++ example
#include "object_model.hpp"

// Assume these named values have been initialized with valid data:
// Fixed min_x
// Fixed min_y
// Fixed max_x
// Fixed max_y

epok::RectTransformComponent& object = /* obtain a valid instance */;

object.set_anchors(min_x, min_y, max_x, max_y);

Why use it

It provides direct, allocation-conscious access to the object model module. No exception-based error path is implied by the signature.

Trade-offs and warnings

Call it only in the lifecycle phase described by the module. Validate indices, capacities and object state before use.

Declared in runtime/object_model.hpp:600

Related members