1 /*******************************************************************************
2 * Copyright (c) 2012, 2013 Association for Decentralized Information Management in
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
10 * VTT Technical Research Centre of Finland - initial API and implementation
11 *******************************************************************************/
12 package org.simantics.g3d.csg.scenegraph2;
14 import java.util.Collection;
16 import org.jcae.opencascade.jni.TopoDS_Shape;
17 import org.simantics.g3d.scenegraph.IG3DNode;
18 import org.simantics.g3d.vtk.common.VtkView;
22 public interface ICSGnode extends IG3DNode {
25 public String getName();
26 public void setName(String name);
28 public TopoDS_Shape getBaseGeometry();
30 public TopoDS_Shape getGeometry();
33 public void visualize(VtkView panel);
34 public void stopVisualize();
36 public Collection<vtkProp3D> getActors();
38 public void deattach();