1 /*******************************************************************************
\r
2 * Copyright (c) 2012, 2013 Association for Decentralized Information Management in
\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
10 * VTT Technical Research Centre of Finland - initial API and implementation
\r
11 *******************************************************************************/
\r
12 package org.simantics.g3d.csg.scenegraph2;
\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
23 @GraphType(CSG.URIs.Cone)
\r
24 public class ConeNode extends CSGnode {
\r
26 private double r1 = 1.0;
\r
27 private double r2 = 0.5;
\r
28 private double h = 1.0;
\r
31 @RelatedSetValue(CSG.URIs.HasBottomRadius)
\r
32 @SetPropertyValue(CSG.URIs.HasBottomRadius)
\r
33 public void setR1(double r1) {
\r
35 firePropertyChanged(CSG.URIs.HasBottomRadius);
\r
38 @RelatedSetValue(CSG.URIs.HasTopRadius)
\r
39 @SetPropertyValue(CSG.URIs.HasTopRadius)
\r
40 public void setR2(double r2) {
\r
42 firePropertyChanged(CSG.URIs.HasTopRadius);
\r
45 @RelatedSetValue(CSG.URIs.HasHeight)
\r
46 @SetPropertyValue(CSG.URIs.HasHeight)
\r
47 public void setH(double h) {
\r
49 firePropertyChanged(CSG.URIs.HasHeight);
\r
52 @RelatedGetValue(CSG.URIs.HasHeight)
\r
53 @GetPropertyValue(value=CSG.URIs.HasHeight, name = "Height")
\r
54 public double getH() {
\r
58 @RelatedGetValue(CSG.URIs.HasBottomRadius)
\r
59 @GetPropertyValue(value=CSG.URIs.HasBottomRadius, name = "Bottom Radius")
\r
60 public double getR1() {
\r
64 @RelatedGetValue(CSG.URIs.HasTopRadius)
\r
65 @GetPropertyValue(value=CSG.URIs.HasTopRadius, name = "Top Radius")
\r
66 public double getR2() {
\r
71 public TopoDS_Shape getBaseGeometry() {
\r
72 if (Math.abs(r1-r2) > MIN_VALUE) {
\r
73 // if (r1 < MIN_VALUE)
\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
77 return OccTriangulator.makeCylinder(new double[] { 0.0, -h * 0.5, 0.0 }, new double[] { 0.0, 1.0, 0.0 }, r1, h);
\r