alloc static method

Pointer<Circle> alloc()

Allocates memory for a Circle instance.

Returns a pointer to the allocated memory.

Implementation

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