/** Company: Shout3D LLC Project: Shout3D 2.0 Sample Code Class: PyramidTestApplet Date: Sep 1, 1999 Description: Class for applet in which you click-drag to scale some pyramids (C) Copyright Shout3D LLC. - 1997-2001 - All rights reserved */ package applets; import shout3d.*; /** * PyramidTestApplet * * Shows how custom nodes can be added to Shout3D * and used in applets. * * This applet creates three Pyramid nodes (a custom node in the * custom_nodes directory) and then changes their fields when * the user click-drags them. * * @author Dave Westwood * @author Jim Stewartson * @author Paul Isaacs */ public class PyramidTestApplet extends Shout3DApplet { public void initShout3DPanel(){ panel = new PyramidTestPanel(this); } }