Epok Engine

EPOK RUNTIME

epok::MotionInterpolation::clear

Method · 2 overloads

Method

Clears clear as part of the motion interpolation module.

Belongs to
epok
Header
motion_interpolation.hpp
Overloads
2

Declaration 1 of 2

Declaration
void clear()

Clears clear as part of the motion interpolation module.

This overload takes no parameters.

Returns: Nothing (void).

Example

C++ example
#include "motion_interpolation.hpp"

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

object.clear();

Why use it

It provides direct, allocation-conscious access to the motion interpolation 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/motion_interpolation.hpp:12

Declaration 2 of 2

Declaration
void clear()

Clears clear as part of the motion interpolation module.

This overload takes no parameters.

Returns: Nothing (void).

Example

C++ example
#include "motion_interpolation.hpp"

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

object.clear();

Why use it

It provides direct, allocation-conscious access to the motion interpolation 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/motion_interpolation.hpp:72

Related members