/* ========================
* JSynoptic : a free Synoptic editor
* ========================
*
* Project Info: http://jsynoptic.sourceforge.net/index.html
*
* This program is free software; you can redistribute it and/or modify it under the terms
* of the GNU Lesser General Public License as published by the Free Software Foundation;
* either version 2.1 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along with this
* program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307, USA.
*
* (C) Copyright 2001-2004, by :
* Corporate:
* EADS Corporate Research Center
* Individual:
* Nicolas Brodu
*
* $Id: CubeNodeXith3D.java,v 1.10 2004/04/23 14:06:26 brodu Exp $
*
* Changes
* -------
* 19-Mar-2004 : Creation date (NB);
*
*/
package syn3d.nodes.xith3d;
import syn3d.base.ActiveNode;
import syn3d.nodes.NodeResourcesManager;
import com.xith3d.scenegraph.Shape3D;
import com.xith3d.test.TestUtils;
/**
*
*/
public class CubeNodeXith3D extends ShapeNodeXith3D {
protected static int anonymousNodeNumber = 0;
public CubeNodeXith3D(ActiveNode parent) {
super(parent);
}
protected Shape3D createShape() {
Shape3D s = new Shape3D(TestUtils.createCubeViaTriangles(0f,0f,0f,2f,false,true));
anonymousNodeNumber++;
name = NodeResourcesManager.getNodeName("Cube") + ((anonymousNodeNumber == 1) ? "" : String.valueOf(anonymousNodeNumber));
s.setName(name);
return s;
}
}