01: /*
02: * $Header: /cvs/j3dfly/J3dEditor/src/org/jdesktop/j3dedit/scenegraph/SGGeometry.java,v 1.1 2005/04/20 22:20:40 paulby Exp $
03: * Sun Public License Notice
04: *
05: * The contents of this file are subject to the Sun Public License Version
06: * 1.0 (the "License"). You may not use this file except in compliance with
07: * the License. A copy of the License is available at http://www.sun.com/
08: *
09: * The Original Code is the Java 3D(tm) Scene Graph Editor.
10: * The Initial Developer of the Original Code is Paul Byrne.
11: * Portions created by Paul Byrne are Copyright (C) 2002.
12: * All Rights Reserved.
13: *
14: * Contributor(s): Paul Byrne.
15: *
16: **/
17: package org.jdesktop.j3dedit.scenegraph;
18:
19: /**
20: *
21: * @author Paul Byrne
22: * @version $Id: SGGeometry.java,v 1.1 2005/04/20 22:20:40 paulby Exp $
23: */
24: public class SGGeometry extends SGNodeComponent {
25:
26: /** Creates a new instance of SGGeometry */
27: public SGGeometry(javax.media.j3d.NodeComponent nc,
28: org.jdesktop.j3dedit.J3dEditContext editContext) {
29: super(nc, editContext);
30: }
31:
32: }
|