alloc static method

Pointer<Point> alloc()

Allocates memory for a new Point struct.

Implementation

static Pointer<Point> alloc() {
  return calloc<Point>();
}