1 package org.simantics.plant3d.geometry;
3 import java.util.Collection;
4 import java.util.Collections;
7 import org.jcae.opencascade.jni.TopoDS_Shape;
8 import org.simantics.db.Resource;
9 import org.simantics.g3d.math.MathTools;
10 import org.simantics.opencascade.OccTriangulator;
12 public class StraightGeometryProvider extends BuiltinGeometryProvider {
14 public StraightGeometryProvider(Resource resource) {
18 private double length = 1.0;
19 private double radius = 0.01;
22 public Collection<TopoDS_Shape> getModel() throws Exception {
23 TopoDS_Shape shape = OccTriangulator.makeCylinder(new double[] {-length*0.5, 0.0, 0.0}, new double[] { 1.0, 0.0, 0.0 }, radius, length);
24 // System.out.println("Create straight l:" + length + " r:" + radius);
25 return Collections.singletonList(shape);
29 public void setProperties(Map<String, Object> props) {
30 if (props.containsKey("length"))
31 length = (Double)props.get("length");
32 if (props.containsKey("radius")) {
33 radius = (Double)props.get("radius");
37 if (radius < MathTools.NEAR_ZERO)
38 radius = MathTools.NEAR_ZERO;