Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- type IPoint interface {
- X() float64
- Y() float64
- SetX(float64)
- SetY(float64)
- }
- type IPoint3D interface {
- IPoint
- Z() float64
- SetZ(float64)
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement