]> gerrit.simantics Code Review - simantics/3d.git/blobdiff - org.simantics.plant3d/scl/Plant3d/Scenegraph/InlineComponent.scl
Updates to SCL interfaces
[simantics/3d.git] / org.simantics.plant3d / scl / Plant3d / Scenegraph / InlineComponent.scl
index b8055009aaf0f920968c285d69db0175292ff594..68d617019835de27d06f842c653b15e7fc9ac2c2 100644 (file)
@@ -1,16 +1,18 @@
-import "./PipelineComponent"
+include "./PipelineComponent"
 
 importJava "org.simantics.plant3d.scenegraph.InlineComponent" where
   data InlineComponent
   
-  getType :: InlineComponent -> String
-  getControlPoint :: InlineComponent -> PipeControlPoint
-  getPipeRun :: InlineComponent -> Maybe PipeRun
+  isVariableLength :: InlineComponent -> <Proc> Boolean
+  getRotationAngle :: InlineComponent -> <Proc> Maybe Double
+  setRotationAngle :: InlineComponent -> Maybe Double -> <Proc> ()
   
-  isVariableLength :: InlineComponent -> Boolean
-  getRotationAngle :: InlineComponent -> Maybe Double
-  setRotationAngle :: InlineComponent -> Maybe Double -> ()
+  isSizeChange :: InlineComponent -> <Proc> Boolean
   
-  isReversed :: InlineComponent -> Maybe Boolean
-  setReversed :: InlineComponent -> Maybe Boolean -> ()
-  
\ No newline at end of file
+  isReversed :: InlineComponent -> <Proc>Maybe Boolean
+  setReversed :: InlineComponent -> Maybe Boolean -> <Proc> ()
+
+instance NodeClass InlineComponent
+instance G3DNodeClass InlineComponent
+instance P3DNodeClass InlineComponent
+instance PipelineComponentClass InlineComponent