]> gerrit.simantics Code Review - simantics/3d.git/blob - org.simantics.g3d.csg/src/org/simantics/g3d/csg/scenegraph2/ConeNode.java
6c8c218a4aa377edca0c419c644efe1c70ce48d0
[simantics/3d.git] / org.simantics.g3d.csg / src / org / simantics / g3d / csg / scenegraph2 / ConeNode.java
1 /*******************************************************************************\r
2  * Copyright (c) 2012, 2013 Association for Decentralized Information Management in\r
3  * Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.g3d.csg.scenegraph2;\r
13 \r
14 import org.jcae.opencascade.jni.TopoDS_Shape;\r
15 import org.simantics.g3d.csg.ontology.CSG;\r
16 import org.simantics.g3d.property.annotations.GetPropertyValue;\r
17 import org.simantics.g3d.property.annotations.SetPropertyValue;\r
18 import org.simantics.objmap.graph.annotations.GraphType;\r
19 import org.simantics.objmap.graph.annotations.RelatedGetValue;\r
20 import org.simantics.objmap.graph.annotations.RelatedSetValue;\r
21 import org.simantics.opencascade.OccTriangulator;\r
22 \r
23 @GraphType(CSG.URIs.Cone)\r
24 public class ConeNode extends CSGnode {\r
25 \r
26         private double r1 = 1.0;\r
27         private double r2 = 0.5;\r
28         private double h = 1.0;\r
29         \r
30         \r
31         @RelatedSetValue(CSG.URIs.HasBottomRadius)\r
32         @SetPropertyValue(CSG.URIs.HasBottomRadius)\r
33         public void setR1(double r1) {\r
34                 this.r1 = r1;\r
35                 firePropertyChanged(CSG.URIs.HasBottomRadius);\r
36         }\r
37         \r
38         @RelatedSetValue(CSG.URIs.HasTopRadius)\r
39         @SetPropertyValue(CSG.URIs.HasTopRadius)\r
40         public void setR2(double r2) {\r
41                 this.r2 = r2;\r
42                 firePropertyChanged(CSG.URIs.HasTopRadius);\r
43         }\r
44         \r
45         @RelatedSetValue(CSG.URIs.HasHeight)\r
46         @SetPropertyValue(CSG.URIs.HasHeight)\r
47         public void setH(double h) {\r
48                 this.h = h;\r
49                 firePropertyChanged(CSG.URIs.HasHeight);\r
50         }\r
51         \r
52         @RelatedGetValue(CSG.URIs.HasHeight)\r
53         @GetPropertyValue(value=CSG.URIs.HasHeight, name = "Height")\r
54         public double getH() {\r
55                 return h;\r
56         }\r
57         \r
58         @RelatedGetValue(CSG.URIs.HasBottomRadius)\r
59         @GetPropertyValue(value=CSG.URIs.HasBottomRadius, name = "Bottom Radius")\r
60         public double getR1() {\r
61                 return r1;\r
62         }\r
63         \r
64         @RelatedGetValue(CSG.URIs.HasTopRadius)\r
65         @GetPropertyValue(value=CSG.URIs.HasTopRadius, name = "Top Radius")\r
66         public double getR2() {\r
67                 return r2;\r
68         }\r
69         \r
70         @Override\r
71         public TopoDS_Shape getBaseGeometry() {\r
72                 if (Math.abs(r1-r2) > MIN_VALUE) {\r
73 //                      if (r1 < MIN_VALUE)\r
74 //                              return null;\r
75                         return OccTriangulator.makeCone(new double[] { 0.0, -h * 0.5, 0.0 }, new double[] { 0.0, 1.0, 0.0 }, r1,r2, h);\r
76                 } else\r
77                         return OccTriangulator.makeCylinder(new double[] { 0.0, -h * 0.5, 0.0 }, new double[] { 0.0, 1.0, 0.0 }, r1, h);\r
78         }\r
79 \r
80 \r
81 }\r