Sander Schobers
26bac636bc
- Includes PointF, RectangleF and PolygonF. Additional it includes the 32 bit floating point PointF32 and wrappers to image.Point and image.Rectangle.
7 lines
119 B
Go
7 lines
119 B
Go
package geom
|
|
|
|
// PointF32 is an X, Y coordinate pair (floating point, 32 bits).
|
|
type PointF32 struct {
|
|
X, Y float32
|
|
}
|