package shape

import (
	
	
)

type shapeSquare struct {
	*baseShape
}

func ( *geo.Box) Shape {
	 := shapeSquare{
		baseShape: &baseShape{
			Type: SQUARE_TYPE,
			Box:  ,
		},
	}
	.FullShape = go2.Pointer(Shape())
	return 
}

func ( shapeSquare) () bool {
	return true
}