Vec2w constructor

Vec2w(
  1. int v1,
  2. int v2
)

Implementation

factory Vec2w(int v1, int v2) {
  final p = calloc<cvg.Vec2w>()
    ..ref.val1 = v1
    ..ref.val2 = v2;
  return Vec2w._(p);
}