Property definitions

gamnit $ Cube :: defaultinit
# Cube, with 6 faces, edges of equal length and square angles
#
# Occupies `[-0.5..0.5]` on all three axes.
class Cube
	super Cuboid

	noautoinit

	init
	do
		width = 1.0
		height = 1.0
		depth = 1.0
	end
end
lib/gamnit/depth/more_meshes.nit:147,1--161,3