struct property

StructType<float3D> struct
final

Describes the raw memory layout, construction, and pointer representation of this struct type.

Implementation

static final StructType<float3D> struct = .new(
  factory: float3D.new,
  layout: .aligned<float3Field>({
    .v: RArray(RFloat(), 3),
  }),
);