VEC2_LEN

const val VEC2_LEN: Int = 2

Evaluates to the number of components of a #graphene_vec2_t.

This symbol is useful when declaring a C array of floating point values to be used with graphene_vec2_init_from_float() and graphene_vec2_to_float(), e.g.

|[ float vGRAPHENE_VEC2_LEN;

// vec is defined elsewhere graphene_vec2_to_float (&vec, v);

for (int i = 0; i < GRAPHENE_VEC2_LEN; i++) fprintf (stdout, "component %d: %g\n", i, vi); ]|

Since

1.0