package shape

import (
	
	
)

// Table is basically a rectangle
type shapeTable struct {
	shapeSquare
}

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

func ( shapeTable) () (,  float64) {
	return 0, 0
}