Epok Engine

EPOK RUNTIME

epok::BoneSample::basis_x

Field

Field

Exposes `basis_x` on `epok::BoneSample` for the epok module.

Belongs to
epok::BoneSample
Header
epok.hpp

Declaration

Declaration
Fixed basis_x[3]

Exposes `basis_x` on `epok::BoneSample` for the epok module.

Type
Fixed[3]
Storage
Per instance

Example

C++ example
#include "epok.hpp"
epok::BoneSample& object = /* obtain a valid instance */;

auto firstValue = object.basis_x[0];

// When mutation is valid for this object:
// object.basis_x[0] = replacement;

When it helps

Use this member when you need direct access to the state represented by its declared type.

Trade-offs and warnings

Direct field access has no validation step. Keep the owning object alive, respect units and ranges, and do not mutate state while hardware or another subsystem is consuming it.

Declared in runtime/epok.hpp:174