]> gerrit.simantics Code Review - simantics/3d.git/blob - org.simantics.g3d/scl/g3d/math/Point3d.scl
Merge "Preventing synchronizing commits after undo / redo are mandatory"
[simantics/3d.git] / org.simantics.g3d / scl / g3d / math / Point3d.scl
1 import "./Tuple3d"
2
3 importJava "javax.vecmath.Point3d" where
4   data Point3d
5   
6   distance :: Point3d -> Point3d -> Double
7   distanceSquared :: Point3d -> Point3d -> Double
8   
9   @JavaName "<init>"
10   createPoint3d :: Double -> Double -> Double -> Point3d
11   @JavaName "<init>"
12   copyPoint3d :: Tuple3d -> Point3d
13   @JavaName "<init>"
14   defaultPoint3d :: Point3d