]> gerrit.simantics Code Review - simantics/3d.git/blob - org.simantics.g3d.csg/src/org/simantics/g3d/csg/scenegraph2/TorusNode.java
Copyrights
[simantics/3d.git] / org.simantics.g3d.csg / src / org / simantics / g3d / csg / scenegraph2 / TorusNode.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.Torus)\r
24 public class TorusNode extends CSGnode {\r
25 \r
26         private double r1 = 1.0;\r
27         private double r2 = 1.0;\r
28         \r
29         \r
30         @RelatedSetValue(CSG.URIs.HasMinorRadius)\r
31         @SetPropertyValue(CSG.URIs.HasMinorRadius)\r
32         public void setR1(double r1) {\r
33                 this.r1 = r1;\r
34                 firePropertyChanged(CSG.URIs.HasMinorRadius);\r
35         }\r
36         \r
37         @RelatedSetValue(CSG.URIs.HasMajorRadius)\r
38         @SetPropertyValue(CSG.URIs.HasMajorRadius)\r
39         public void setR2(double r2) {\r
40                 this.r2 = r2;\r
41                 firePropertyChanged(CSG.URIs.HasMajorRadius);\r
42         }\r
43         \r
44         @RelatedGetValue(CSG.URIs.HasMinorRadius)\r
45         @GetPropertyValue(value=CSG.URIs.HasMinorRadius, name="Minor Radius")\r
46         public double getR1() {\r
47                 return r1;\r
48         }\r
49         \r
50         @RelatedGetValue(CSG.URIs.HasMajorRadius)\r
51         @GetPropertyValue(value=CSG.URIs.HasMajorRadius, name="Major Radius")   \r
52         public double getR2() {\r
53                 return r2;\r
54         }\r
55         \r
56         @Override\r
57         public TopoDS_Shape getBaseGeometry() {\r
58                 return OccTriangulator.makeTorus(new double[] { 0.0, 0.0, 0.0 }, new double[] { 0.0, 1.0, 0.0 }, r2, r1);\r
59         }\r
60 \r
61 }\r