package Savage.ShipsCivilian.CargoShips;

import org.web3d.x3d.jsail.Core.*;
import org.web3d.x3d.jsail.EnvironmentalEffects.*;
import org.web3d.x3d.jsail.fields.*;
import org.web3d.x3d.jsail.Geometry3D.*;
import org.web3d.x3d.jsail.Grouping.*;
import org.web3d.x3d.jsail.Navigation.*;
import org.web3d.x3d.jsail.Rendering.*;
import org.web3d.x3d.jsail.Shape.*;
import org.web3d.x3d.jsail.Texturing.*;

// Javadoc metadata annotations follow, see below for X3DJSAIL Java source code.
/**
 * <p> An Oil Tanker. </p>
 <p> Related links: Catalog page <a href="../../../../ShipsCivilian/CargoShips/OilTankerIndex.html" target="_blank">OilTanker</a>,  source <a href="../../../../ShipsCivilian/CargoShips/OilTanker.java">OilTanker.java</a>, <a href="https://www.web3d.org/x3d/content/examples/X3dResources.html" target="_blank">X3D Resources</a>, <a href="https://www.web3d.org/x3d/content/examples/X3dSceneAuthoringHints.html" target="_blank">X3D Scene Authoring Hints</a>, and <a href="https://www.web3d.org/x3d/content/X3dTooltips.html" target="_blank">X3D Tooltips</a>. </p>
	<table style="color:black; border:0px solid; border-spacing:10px 0px;">
        <caption>Scene Meta Information</caption>
		<tr style="background-color:silver; border-color:silver;">
			<td style="text-align:center; padding:10px 0px;"><i>meta tags</i></td>
			<td style="text-align:left;   padding:10px 0px;">&nbsp; Document Metadata </td>
		</tr>

		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> title </i> </td>
			<td> <a href="../../../../ShipsCivilian/CargoShips/OilTanker.x3d">OilTanker.x3d</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> description </i> </td>
			<td> An Oil Tanker </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> creator </i> </td>
			<td> Andrew Wiest </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> translator </i> </td>
			<td> LT Patrick Sullivan </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> created </i> </td>
			<td> 6 May 2001 </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> translated </i> </td>
			<td> 30 January 2006 </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> modified </i> </td>
			<td> 20 October 2019 </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> identifier </i> </td>
			<td> <a href="https://www.web3d.org/x3d/content/examples/Savage/ShipsCivilian/CargoShips/OilTanker.x3d" target="_blank">https://www.web3d.org/x3d/content/examples/Savage/ShipsCivilian/CargoShips/OilTanker.x3d</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> generator </i> </td>
			<td> X3D-Edit 3.2, <a href="https://www.web3d.org/x3d/tools/X3D-Edit" target="_blank">https://www.web3d.org/x3d/tools/X3D-Edit</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> generator </i> </td>
			<td> VizX3D, <a href="http://www.vivaty.com/downloads/studio" target="_blank">http://www.vivaty.com/downloads/studio</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> license </i> </td>
			<td> <a href="../../../../ShipsCivilian/CargoShips/../../license.html">../../license.html</a> </td>
		</tr>
		<tr style="background-color:silver; border-color:silver;">
			<td style="text-align:center;" colspan="2">  &nbsp; </td>
		</tr>
	</table>

	<p>
		This program uses the
		<a href="https://www.web3d.org/specifications/java/X3DJSAIL.html" target="_blank">X3D Java Scene Access Interface Library (X3DJSAIL)</a>.
		It has been produced using the 
		<a href="https://www.web3d.org/x3d/stylesheets/X3dToJava.xslt" target="_blank">X3dToJava.xslt</a>
		stylesheet
	       (<a href="https://sourceforge.net/p/x3d/code/HEAD/tree/www.web3d.org/x3d/stylesheets/X3dToJava.xslt" target="_blank">version control</a>)
                which is used to create Java source code from an original <code>.x3d</code> model.
	</p>

	* @author Andrew Wiest
 */

public class OilTanker
{
	/** Default constructor to create this object. */
	public OilTanker ()
	{
	  initialize();
	}

	/** Create and initialize the X3D model for this object. */
	public final void initialize()
	{
            try { // catch-all
  x3dModel = new X3D().setProfile(X3D.PROFILE_INTERCHANGE).setVersion(X3D.VERSION_3_1)
  .setHead(new head()
    .addMeta(new meta().setName(meta.NAME_TITLE      ).setContent("OilTanker.x3d"))
    .addMeta(new meta().setName(meta.NAME_DESCRIPTION).setContent("An Oil Tanker"))
    .addMeta(new meta().setName(meta.NAME_CREATOR    ).setContent("Andrew Wiest"))
    .addMeta(new meta().setName(meta.NAME_TRANSLATOR ).setContent("LT Patrick Sullivan"))
    .addMeta(new meta().setName(meta.NAME_CREATED    ).setContent("6 May 2001"))
    .addMeta(new meta().setName(meta.NAME_TRANSLATED ).setContent("30 January 2006"))
    .addMeta(new meta().setName(meta.NAME_MODIFIED   ).setContent("20 October 2019"))
    .addMeta(new meta().setName(meta.NAME_IDENTIFIER ).setContent("https://www.web3d.org/x3d/content/examples/Savage/ShipsCivilian/CargoShips/OilTanker.x3d"))
    .addMeta(new meta().setName(meta.NAME_GENERATOR  ).setContent("X3D-Edit 3.2, https://www.web3d.org/x3d/tools/X3D-Edit"))
    .addMeta(new meta().setName(meta.NAME_GENERATOR  ).setContent("VizX3D, http://www.vivaty.com/downloads/studio"))
    .addMeta(new meta().setName(meta.NAME_LICENSE    ).setContent("../../license.html")))
  .setScene(new Scene()
    .addChild(new WorldInfo().setTitle("Oil Tanker")
      .setMetadata(new MetadataSet().setName("SMAL").setReference("https://www.web3d.org/x3d/content/examples/Savage/Tools/SMAL/SMAL.html")
        .setMetadata(new MetadataString().setName("version").setValue(new String[] {"1.0"})
          .setMetadata(new MetadataString().setName("appinfo").setValue(new String[] {"This is the version of SMAL employed, not of the model."})))
        .setMetadata(new MetadataSet().setName("EntityDefinition")
          .addComments(" Identifying metadata for the current simulation of interest ")
          .setMetadata(new MetadataSet().setName("Classification")
            .setMetadata(new MetadataString().setName("level").setValue(new String[] {"UNCLASSIFIED"})
              .setMetadata(new MetadataString().setName("appinfo").setValue(new String[] {"UNCLASSIFIED","FOUO","CONFIDENTIAL","SECRET"})))
            .setMetadata(new MetadataString().setName("reference").setValue(new String[] {"none"})
              .setMetadata(new MetadataString().setName("appinfo").setValue(new String[] {"The published source of classified information, if any, contained in the Metadata."})))
            .setMetadata(new MetadataString().setName("rationale")
              .setMetadata(new MetadataString().setName("appinfo").setValue(new String[] {"Values are estimations and not from any source"}))))
          .setMetadata(new MetadataSet().setName("IdentificationParameters")
            .setMetadata(new MetadataString().setName("name").setValue(new String[] {"Oil Tanker"})
              .setMetadata(new MetadataString().setName("appinfo").setValue(new String[] {"The plain language name of the vehicle this model represents, i.e. the base class (DDG-51), or vehicle designation (M1A2)."}))))
          .setMetadata(new MetadataSet().setName("X3DArchiveModel")
            .setMetadata(new MetadataString().setName("appinfo").setValue(new String[] {"https://www.web3d.org/x3d/content/examples/Savage/ShipsCivilian/CargoShips/OilTanker.x3d"})))
          .setMetadata(new MetadataSet().setName("PhysicalParameters")
            .setMetadata(new MetadataSet().setName("PhysicalConstraints")
              .setMetadata(new MetadataFloat().setName("height").setValue(new double[] {50.0})
                .setMetadata(new MetadataString().setName("appinfo").setValue(new String[] {"The maximum structural height of the object in meters. This may be used for clearance checking or other calculations."})))
              .setMetadata(new MetadataFloat().setName("width").setValue(new double[] {28.0})
                .setMetadata(new MetadataString().setName("appinfo").setValue(new String[] {"The maximum width, beam, or wingspan of the vehicle in meters. This may be used for clearance checking or other calculations."})))
              .setMetadata(new MetadataFloat().setName("length").setValue(new double[] {138.6})
                .setMetadata(new MetadataString().setName("appinfo").setValue(new String[] {"The maximum structural length of the object in meters. This may be used for clearance checking or other calculations."})))
              .setMetadata(new MetadataFloat().setName("draft").setValue(new double[] {12.0})
                .setMetadata(new MetadataString().setName("appinfo").setValue(new String[] {"The vertical distance in meters from the deepest point (keel or other structure) to the waterline of a vehicle at its stated displacement or gross weight."}))))
            .setMetadata(new MetadataSet().setName("DynamicResponseConstraints")
              .setMetadata(new MetadataFloat().setName("maximumSpeed").setValue(new double[] {28.0})
                .setMetadata(new MetadataString().setName("appinfo").setValue(new String[] {"The maximum rated speed for this vehicle in kph."})))
              .setMetadata(new MetadataFloat().setName("cruiseSpeed").setValue(new double[] {20.0})
                .setMetadata(new MetadataString().setName("appinfo").setValue(new String[] {"The published cruise speed for this vehicle in kph."}))))
            .setMetadata(new MetadataSet().setName("TacticalConstraints")
              .addComments(" none defined ")))
          .setMetadata(new MetadataSet().setName("NetworkedCommunicationParameterSet")
            .setMetadata(new MetadataSet().setName("DisConfiguration")
              .setMetadata(new MetadataInteger().setName("entityKind").setValue(new int[] {1})
                .setMetadata(new MetadataString().setName("appinfo").setValue(new String[] {"The DIS enumeration for the overall type of this object (for vehicles this value should be 1)."})))
              .setMetadata(new MetadataInteger().setName("entityDomain").setValue(new int[] {3})
                .setMetadata(new MetadataString().setName("appinfo").setValue(new String[] {"The DIS enumeration for the domain of operations of this object (air, surface, sub-surface, etc.)."})))
              .setMetadata(new MetadataInteger().setName("entityCountry").setValue(new int[] {225})
                .setMetadata(new MetadataString().setName("appinfo").setValue(new String[] {"The DIS enumeration for the country of origin of this object (the value for United States is 225)."})))
              .setMetadata(new MetadataInteger().setName("entityCategory").setValue(new int[] {61})
                .setMetadata(new MetadataString().setName("appinfo").setValue(new String[] {"The DIS enumeration for the type of this vehicle (cruiser or destroyer, tank or truck, bomber or fighter, etc.)."})))
              .setMetadata(new MetadataInteger().setName("entitySubCategory").setValue(new int[] {1})
                .setMetadata(new MetadataString().setName("appinfo").setValue(new String[] {"The DIS enumeration for the class designation of this vehicle (CG-47 Ticonderoga, DDG-51 Arleigh Burke, M1A2, M880, B-52, F-22, etc."}))))))))
    .addChild(new Background("Background1").setSkyColor(new MFColor(new double[] {.70196,.8,.94902})))
    .addChild(new Group("OilTanker")
      .addChild(new Transform("dad_ShipSUpertankerMasterNode")
        .addChild(new Group("ShipSUpertankerMasterNode")
          .addChild(new Transform("dad_HE4").setRotation(0.0,-1.0,0.0,1.571).setScale(.835,.999,.98).setTranslation(133.0,-.1,0.0)
            .addChild(new Shape("HE4")
              .setAppearance(new Appearance()
                .setMaterial(new Material("material2_mat").setDiffuseColor(.8,.3,.2).setShininess(0.100).setSpecularColor(.3,.1,.05)))
              .setGeometry(new IndexedFaceSet().setCreaseAngle(1.300).setCoordIndex(new int[] {0,1,11,-1,0,11,10,-1,1,2,12,-1,1,12,11,-1,2,3,13,-1,2,13,12,-1,3,4,14,-1,3,14,13,-1,4,5,15,-1,4,15,14,-1,5,6,16,-1,5,16,15,-1,6,7,17,-1,6,17,16,-1,7,8,18,-1,7,18,17,-1,8,9,19,-1,8,19,18,-1,10,11,21,-1,10,21,20,-1,11,12,22,-1,11,22,21,-1,12,13,23,-1,12,23,22,-1,13,14,24,-1,13,24,23,-1,14,15,25,-1,14,25,24,-1,15,16,26,-1,15,26,25,-1,16,17,27,-1,16,27,26,-1,17,18,28,-1,17,28,27,-1,18,19,29,-1,18,29,28,-1,20,21,31,-1,20,31,30,-1,21,22,32,-1,21,32,31,-1,22,23,33,-1,22,33,32,-1,23,24,34,-1,23,34,33,-1,24,25,35,-1,24,35,34,-1,25,26,36,-1,25,36,35,-1,26,27,37,-1,26,37,36,-1,27,28,38,-1,27,38,37,-1,28,29,39,-1,28,39,38,-1,30,31,41,-1,30,41,40,-1,31,32,42,-1,31,42,41,-1,32,33,43,-1,32,43,42,-1,33,34,44,-1,33,44,43,-1,34,35,45,-1,34,45,44,-1,35,36,46,-1,35,46,45,-1,36,37,47,-1,36,47,46,-1,37,38,48,-1,37,48,47,-1,38,39,49,-1,38,49,48,-1,8,7,6,-1,8,6,5,-1,8,5,4,-1,8,4,3,-1,8,3,2,-1,8,2,1,-1,8,1,0,-1})
                .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {0.0,-19.66,-33.92,-4.88,-19.66,-32.48,-13.6,-19.66,-29.04,-19.44,-19.66,-24.24,-19.44,-19.66,32.32,19.44,-19.66,32.32,19.44,-19.66,-24.24,13.6,-19.66,-29.04,4.88,-19.66,-32.48,0.0,-19.66,-33.92,0.0,-15.0,-40.28,-5.795,-15.0,-38.57,-16.15,-15.0,-34.485,-23.085,-15.0,-28.785,-23.085,-15.0,38.38,23.085,-15.0,38.38,23.085,-15.0,-28.785,16.15,-15.0,-34.485,5.795,-15.0,-38.57,0.0,-15.0,-40.28,0.0,-10.0,-42.4,-6.1,-10.0,-40.6,-17.0,-10.0,-36.3,-24.3,-10.0,-30.3,-24.3,-10.0,40.4,24.3,-10.0,40.4,24.3,-10.0,-30.3,17.0,-10.0,-36.3,6.1,-10.0,-40.6,0.0,-10.0,-42.4,0.0,-5.0,-40.28,-5.795,-5.0,-38.57,-16.15,-5.0,-34.485,-23.085,-5.0,-28.785,-23.085,-5.0,38.38,23.085,-5.0,38.38,23.085,-5.0,-28.785,16.15,-5.0,-34.485,5.795,-5.0,-38.57,0.0,-5.0,-40.28,0.0,6.0,-33.92,-4.27,6.0,-32.48,-11.9,6.0,-29.04,-17.01,6.0,-24.24,-17.01,6.0,32.32,17.01,6.0,32.32,17.01,6.0,-24.24,11.9,6.0,-29.04,4.27,6.0,-32.48,0.0,6.0,-33.92}))))))
          .addChild(new Transform("dad_HE3").setTranslation(157.6,9.1,0.0)
            .addChild(new Shape("HE3")
              .setAppearance(new Appearance()
                .setMaterial(new Material("GreyBlack_mat").setDiffuseColor(.3,.3,.3).setShininess(0.100).setSpecularColor(.1,.1,.1)))
              .setGeometry(new IndexedFaceSet().setCreaseAngle(0.785).setSolid(false).setCoordIndex(new int[] {0,1,12,-1,0,12,11,-1,1,2,13,-1,1,13,12,-1,2,3,14,-1,2,14,13,-1,3,4,15,-1,3,15,14,-1,4,5,16,-1,4,16,15,-1,5,6,17,-1,5,17,16,-1,6,7,18,-1,6,18,17,-1,7,8,19,-1,7,19,18,-1,8,9,20,-1,8,20,19,-1,9,10,21,-1,9,21,20,-1})
                .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-13.93,-.03094,24.3,-9.53,-.08434,24.3,-.33,-.196,21.2,5.87,-.27124,15.2,12.07,-.34648,9.1,15.17,-.38411,0.0,12.07,-.34648,-9.1,5.87,-.27124,-15.2,-.33,-.196,-21.2,-9.53,-.08434,-24.3,-13.93,-.03094,-24.3,-8.93,4.16906,24.3,-4.53,4.11566,24.3,4.67,4.004,21.2,10.87,3.92876,15.2,17.07,3.85352,9.1,20.17,3.81589,0.0,17.07,3.85352,-9.1,10.87,3.92876,-15.2,4.67,4.004,-21.2,-4.53,4.11566,-24.3,-8.93,4.16906,-24.3}))))))
          .addChild(new Transform("dad_MainHull")
            .addChild(new Group("MainHull")
              .addChild(new Transform("dad_HE1")
                .addChild(new Shape("HE1")
                  .setAppearance(new Appearance()
                    .setMaterial(new Material().setUSE("GreyBlack_mat")))
                  .setGeometry(new IndexedFaceSet().setCreaseAngle(0.785).setSolid(false).setCoordIndex(new int[] {0,1,20,-1,0,20,19,-1,1,2,21,-1,1,21,20,-1,2,3,22,-1,2,22,21,-1,3,4,23,-1,3,23,22,-1,4,5,24,-1,4,24,23,-1,5,6,25,-1,5,25,24,-1,6,7,26,-1,6,26,25,-1,7,8,27,-1,7,27,26,-1,8,9,28,-1,8,28,27,-1,9,10,29,-1,9,29,28,-1,10,11,30,-1,10,30,29,-1,11,12,31,-1,11,31,30,-1,12,13,32,-1,12,32,31,-1,13,14,33,-1,13,33,32,-1,14,15,34,-1,14,34,33,-1,15,16,35,-1,15,35,34,-1,16,17,36,-1,16,36,35,-1,17,18,37,-1,17,37,36,-1,17,16,15,-1,17,15,14,-1,17,14,13,-1,17,13,12,-1,17,12,11,-1,17,11,10,-1,17,10,9,-1,17,9,8,-1,17,8,7,-1,17,7,6,-1,17,6,5,-1,17,5,4,-1,17,4,3,-1,17,3,2,-1,17,2,1,-1,17,1,0,-1})
                    .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {169.8,0.0,0.0,166.8,0.0,-9.1,160.7,0.0,-15.2,154.6,0.0,-21.2,145.6,0.0,-24.3,-103.1,0.0,-24.3,-112.2,0.0,-21.3,-118.3,0.0,-15.2,-122.5,0.0,-9.3,-124.3,0.0,0.0,-122.5,0.0,9.3,-118.3,0.0,15.2,-112.2,0.0,21.3,-103.1,0.0,24.3,145.6,0.0,24.3,154.6,0.0,21.2,160.7,0.0,15.2,166.8,0.0,9.1,169.8,0.0,0.0,172.8564,9.1,0.0,169.8024,9.1,-9.1,163.5926,9.1,-15.2,157.3828,9.1,-21.2,148.2208,9.1,-24.3,-104.9558,9.1,-24.3,-114.2196,9.1,-21.3,-120.4294,9.1,-15.2,-124.705,9.1,-9.3,-126.5374,9.1,0.0,-124.705,9.1,9.3,-120.4294,9.1,15.2,-114.2196,9.1,21.3,-104.9558,9.1,24.3,148.2208,9.1,24.3,157.3828,9.1,21.2,163.5926,9.1,15.2,169.8024,9.1,9.1,172.8564,9.1,0.0}))))))
              .addChild(new Transform("dad_HE2").setRotation(0.0,-1.0,0.0,1.571)
                .addChild(new Shape("HE2")
                  .setAppearance(new Appearance()
                    .setMaterial(new Material("Rustyred_mat").setDiffuseColor(.8,.3,.2).setShininess(0.100).setSpecularColor(.3,.1,.05)))
                  .setGeometry(new IndexedFaceSet().setCreaseAngle(0.785).setSolid(false).setCoordIndex(getIndexedFaceSet_10_79_coordIndex())
                    .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {0.0,-19.66,-112.068,-6.37,-19.66,-110.088,-10.64,-19.66,-106.062,-14.84,-19.66,-102.036,-17.01,-19.66,-96.096,-17.01,-19.66,68.046,-14.91,-19.66,74.052,-10.64,-19.66,78.078,-6.51,-19.66,80.85,0.0,-19.66,82.038,6.51,-19.66,80.85,10.64,-19.66,78.078,14.91,-19.66,74.052,17.01,-19.66,68.046,17.01,-19.66,-96.096,14.84,-19.66,-102.036,10.64,-19.66,-106.062,6.37,-19.66,-110.088,0.0,-19.66,-112.068,0.0,-15.0,-135.84,-7.28,-15.0,-133.44,-12.16,-15.0,-128.56,-16.96,-15.0,-123.68,-19.44,-15.0,-116.48,-19.44,-15.0,82.48,-17.04,-15.0,89.76,-12.16,-15.0,94.64,-7.44,-15.0,98.0,0.0,-15.0,99.44,7.44,-15.0,98.0,12.16,-15.0,94.64,17.04,-15.0,89.76,19.44,-15.0,82.48,19.44,-15.0,-116.48,16.96,-15.0,-123.68,12.16,-15.0,-128.56,7.28,-15.0,-133.44,0.0,-15.0,-135.84,0.0,0.0,-169.8,-9.1,0.0,-166.8,-15.2,0.0,-160.7,-21.2,0.0,-154.6,-24.3,0.0,-145.6,-24.3,0.0,103.1,-21.3,0.0,112.2,-15.2,0.0,118.3,-9.3,0.0,122.5,0.0,0.0,124.3,9.3,0.0,122.5,15.2,0.0,118.3,21.3,0.0,112.2,24.3,0.0,103.1,24.3,0.0,-145.6,21.2,0.0,-154.6,15.2,0.0,-160.7,9.1,0.0,-166.8,0.0,0.0,-169.8}))))))))
          .addChild(new Transform("dad_Deck").setScale(1.01,1.0,1.0).setTranslation(0.0,7.0,0.0)
            .addChild(new Group("Deck")
              .addChild(new Transform("dad_IndexedFaceSet1")
                .addChild(new Shape("IndexedFaceSet1")
                  .setAppearance(new Appearance()
                    .setTexture(new ImageTexture().setUrl(new String[] {"DeckPlate.jpg","https://www.web3d.org/x3d/content/examples/Savage/Ships/Supertanker/DeckPlate.jpg"}))
                    .setMaterial(new Material("Rustyreddeck_mat").setDiffuseColor(.8,.3,.2).setShininess(0.100).setSpecularColor(.3,.1,.05)))
                  .setGeometry(new IndexedFaceSet().setCreaseAngle(1.500).setCoordIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,4,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,0,-1}).setTexCoordIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,4,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,0,-1})
                    .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {169.8,0.0,0.0,166.8,0.0,-9.1,160.7,0.0,-15.2,154.6,0.0,-21.2,145.6,0.0,-24.3,-103.1,0.0,-24.3,-112.2,0.0,-21.3,-118.3,0.0,-15.2,-122.5,0.0,-9.3,-124.3,0.0,0.0,-122.5,0.0,9.3,-118.3,0.0,15.2,-112.2,0.0,21.3,-103.1,0.0,24.3,145.6,0.0,24.3,154.6,0.0,21.2,160.7,0.0,15.2,166.8,0.0,9.1}))))))
              .addChild(new Transform("dad_cranes")
                .addChild(new Group("cranes")
                  .addChild(new Transform("dad_stbdcrane").setTranslation(10.0,0.0,20.0)
                    .addChild(new Group("Group1")
                      .addChild(new Transform("dad_Group2")
                        .addChild(new Group("Group2")
                          .addChild(new Transform("dad_yellowcylinderpiece").setScale(3.0,1.0,3.0).setTranslation(0.0,-1.0,0.0)
                            .addChild(new Shape("yellowcylinderpiece")
                              .setAppearance(new Appearance()
                                .setMaterial(new Material("material3_mat").setDiffuseColor(1.0,.8,.3).setShininess(0.100).setSpecularColor(.2,.2,0.0)))
                              .setGeometry(new Cylinder().setHeight(15.000).setRadius(0.2))))
                          .addChild(new Transform("dad_Reference5").setRotation(0.0,0.0,1.0,-1.571).setScale(2.0,.7,2.0).setTranslation(4.0,6.0,0.0)
                            .addChild(new Shape().setUSE("yellowcylinderpiece")))))))
                  .addChild(new Transform("dad_Reference1").setTranslation(40.0,0.0,-15.0)
                    .addChild(new Shape().setUSE("yellowcylinderpiece")))
                  .addChild(new Transform("dad_Reference2").setTranslation(40.0,0.0,15.0)
                    .addChild(new Shape().setUSE("yellowcylinderpiece")))
                  .addChild(new Transform("dad_Reference3").setTranslation(100.0,0.0,-15.0)
                    .addChild(new Shape().setUSE("yellowcylinderpiece")))
                  .addChild(new Transform("dad_Reference4").setTranslation(100.0,0.0,15.0)
                    .addChild(new Shape().setUSE("yellowcylinderpiece")))
                  .addChild(new Transform("dad_Group1").setTranslation(10.0,0.0,-20.0)
                    .addChild(new Group().setUSE("Group1")))
                  .addChild(new Transform("dad_Group3").setTranslation(150.0,5.0,0.0)
                    .addChild(new Group("Group3")
                      .addChild(new Transform("dad_Reference6")
                        .addChild(new Shape().setUSE("yellowcylinderpiece")))
                      .addChild(new Transform("dad_Box1").setTranslation(0.0,-5.0,0.0)
                        .addChild(new Shape("Box1")
                          .setGeometry(new Box().setSize(10.0,5.0,10.0))
                          .setAppearance(new Appearance()
                            .setMaterial(new Material()))))))))))
          .addChild(new Transform("dad_superstructure")
            .addChild(new Group("superstructure")
              .addChild(new Transform("dad_SS1").setTranslation(-86.9,12.1,0.0)
                .addChild(new Shape("SS1")
                  .setAppearance(new Appearance()
                    .setMaterial(new Material("offwhite_mat").setDiffuseColor(.98,.98,.98)))
                  .setGeometry(new Box().setSize(18.2,24.3,24.3))))
              .addChild(new Transform("dad_bridgewingsupport").setTranslation(-80.8,12.1,-18.2)
                .addChild(new Shape("bridgewingsupport")
                  .setAppearance(new Appearance()
                    .setMaterial(new Material().setUSE("offwhite_mat")))
                  .setGeometry(new Cylinder().setBottom(false).setHeight(24.900).setRadius(0.5).setTop(false))))
              .addChild(new Transform("dad_rightsupport").setTranslation(-80.8,12.1,18.2)
                .addChild(new Shape().setUSE("bridgewingsupport")))
              .addChild(new Transform("dad_SS3").setTranslation(-89.9,12.1,0.0)
                .addChild(new Shape("SS3")
                  .setAppearance(new Appearance()
                    .setMaterial(new Material().setUSE("offwhite_mat")))
                  .setGeometry(new Box().setSize(12.2,24.3,28.3))))
              .addChild(new Transform("dad_smokestackbase").setTranslation(-109.0,9.1,0.0)
                .addChild(new Shape("smokestackbase")
                  .setAppearance(new Appearance()
                    .setMaterial(new Material().setUSE("offwhite_mat")))
                  .setGeometry(new Box().setSize(12.1,14.0,20.0))))
              .addChild(new Transform("dad_SS2").setTranslation(-85.8,26.4,0.0)
                .addChild(new Group("SS2")
                  .addChild(new Transform("dad_Box2")
                    .addChild(new Shape("Box2")
                      .setAppearance(new Appearance()
                        .setMaterial(new Material().setUSE("offwhite_mat")))
                      .setGeometry(new Box().setSize(17.0,4.2,12.1))))
                  .addChild(new Transform("dad_StbdSideWindows").setRotation(0.0,-1.0,0.0,1.571).setScale(.5,.6,.6).setTranslation(-4.00163,-5.0,14.3)
                    .addChild(new Group("bottomwindows")
                      .addChild(new Transform("dad_Box21")
                        .addChild(new Shape("Box21")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material22_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))
                      .addChild(new Transform("dad_Box22").setTranslation(0.0,0.0,-4.0)
                        .addChild(new Shape("Box22")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material23_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))
                      .addChild(new Transform("dad_Box23").setTranslation(0.0,0.0,-8.0)
                        .addChild(new Shape("Box23")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material24_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))
                      .addChild(new Transform("dad_Box24").setTranslation(0.0,0.0,4.0)
                        .addChild(new Shape("Box24")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material25_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))
                      .addChild(new Transform("dad_Box25").setTranslation(0.0,0.0,8.0)
                        .addChild(new Shape("Box25")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material26_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))))
                  .addChild(new Transform("dad_PortSideWindows").setRotation(0.0,1.0,0.0,1.571).setScale(.5,.6,.6).setTranslation(-4.00163,-5.0,-14.3)
                    .addChild(new Group().setUSE("bottomwindows")))
                  .addChild(new Transform("dad_bridgewindows").setScale(.5,1.2,1.2).setTranslation(8.5,.2,0.0)
                    .addChild(new Group("bridgewindows")
                      .addChild(new Transform("dad_Box3")
                        .addChild(new Shape("Box3")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material4_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))
                      .addChild(new Transform("dad_Box4").setTranslation(0.0,0.0,-1.0)
                        .addChild(new Shape("Box4")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material5_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))
                      .addChild(new Transform("dad_Box5").setTranslation(0.0,0.0,-2.0)
                        .addChild(new Shape("Box5")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material6_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))
                      .addChild(new Transform("dad_Box6").setTranslation(0.0,0.0,-3.0)
                        .addChild(new Shape("Box6")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material7_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))
                      .addChild(new Transform("dad_Box7").setTranslation(0.0,0.0,1.0)
                        .addChild(new Shape("Box7")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material8_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))
                      .addChild(new Transform("dad_Box8").setTranslation(0.0,0.0,2.0)
                        .addChild(new Shape("Box8")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material9_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))
                      .addChild(new Transform("dad_Box9").setTranslation(0.0,0.0,3.0)
                        .addChild(new Shape("Box9")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material10_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))
                      .addChild(new Transform("dad_Box10").setTranslation(0.0,0.0,-4.0)
                        .addChild(new Shape("Box10")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material11_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))
                      .addChild(new Transform("dad_Box11").setTranslation(0.0,0.0,4.0)
                        .addChild(new Shape("Box11")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material12_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))))
                  .addChild(new Transform("dad_lowerwindows").setScale(.5,1.2,1.2).setTranslation(8.0,-4.0,0.0)
                    .addChild(new Group("lowerwindows")
                      .addChild(new Transform("dad_Box12")
                        .addChild(new Shape("Box12")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material13_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))
                      .addChild(new Transform("dad_Box13").setTranslation(0.0,0.0,-2.0)
                        .addChild(new Shape("Box13")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material14_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))
                      .addChild(new Transform("dad_Box14").setTranslation(0.0,0.0,-4.0)
                        .addChild(new Shape("Box14")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material15_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))
                      .addChild(new Transform("dad_Box15").setTranslation(0.0,0.0,-6.0)
                        .addChild(new Shape("Box15")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material16_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))
                      .addChild(new Transform("dad_Box16").setTranslation(0.0,0.0,-8.0)
                        .addChild(new Shape("Box16")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material17_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))
                      .addChild(new Transform("dad_Box17").setTranslation(0.0,0.0,2.0)
                        .addChild(new Shape("Box17")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material18_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))
                      .addChild(new Transform("dad_Box18").setTranslation(0.0,0.0,4.0)
                        .addChild(new Shape("Box18")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material19_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))
                      .addChild(new Transform("dad_Box19").setTranslation(0.0,0.0,6.0)
                        .addChild(new Shape("Box19")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material20_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))
                      .addChild(new Transform("dad_Box20").setTranslation(0.0,0.0,8.0)
                        .addChild(new Shape("Box20")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material21_mat").setDiffuseColor(0.0,0.0,.9).setEmissiveColor(0.0,0.0,.2).setSpecularColor(0.0,0.0,.2).setTransparency(0.5)))
                          .setGeometry(new Box().setSize(.5,.8,.8))))))
                  .addChild(new Transform("dad_bottomwindows").setScale(.5,1.2,1.2).setTranslation(8.0,-10.0,0.0)
                    .addChild(new Group().setUSE("bottomwindows")))
                  .addChild(new Transform("dad_mastassembly").setCenter(-86.0,27.0,0.0)
                    .addChild(new Group("mastassembly")
                      .addChild(new Transform("dad_leftsidemast").setRotation(1.0,0.0,0.0,.3)
                        .addChild(new Group("leftsidemast")
                          .addChild(new Transform("dad_leftfrontleg").setRotation(0.0,0.0,1.0,.6).setTranslation(2.2,0.0,-2.0)
                            .addChild(new Shape().setUSE("yellowcylinderpiece")))
                          .addChild(new Transform("dad_leftrearleg").setTranslation(-2.0,-1.0,-2.0)
                            .addChild(new Shape().setUSE("yellowcylinderpiece")))))
                      .addChild(new Transform("dad_rightsidemast").setRotation(1.0,0.0,0.0,-.3)
                        .addChild(new Group("rightsidemast")
                          .addChild(new Transform("dad_rightrearleg").setTranslation(-2.0,-1.0,2.0)
                            .addChild(new Shape().setUSE("yellowcylinderpiece")))
                          .addChild(new Transform("dad_righfrontleg").setRotation(0.0,0.0,1.0,.6).setTranslation(2.2,0.0,2.0)
                            .addChild(new Shape().setUSE("yellowcylinderpiece")))))
                      .addChild(new Transform("dad_uppermastarea").setTranslation(-2.2,-3.4,0.0)
                        .addChild(new Group("uppermastarea")
                          .addChild(new Transform("dad_Reference7").setRotation(1.0,0.0,0.0,1.571).setScale(1.0,.5,1.0).setTranslation(0.0,10.0,0.0)
                            .addChild(new Shape().setUSE("yellowcylinderpiece")))
                          .addChild(new Transform("dad_Reference8").setScale(1.0,.35,1.0).setTranslation(-4.0,12.0,0.0)
                            .addChild(new Shape().setUSE("yellowcylinderpiece")))
                          .addChild(new Transform("dad_Reference9").setScale(1.0,.55,1.0).setTranslation(0.0,9.0,0.0)
                            .addChild(new Shape().setUSE("yellowcylinderpiece")))
                          .addChild(new Transform("dad_Reference10").setRotation(1.0,0.0,0.0,1.571).setScale(1.0,.2,1.0).setTranslation(0.0,13.0,0.0)
                            .addChild(new Shape().setUSE("yellowcylinderpiece")))
                          .addChild(new Transform("dad_Reference11").setRotation(.577,.577,-.577,2.095).setScale(1.0,.5,1.0).setTranslation(0.0,10.0,0.0)
                            .addChild(new Shape().setUSE("yellowcylinderpiece")))))))))
              .addChild(new Transform("dad_bridgewings").setCenter(-75.9,25.8,0.0).setScale(1.0,1.03,1.0).setTranslation(-5.0,-.2,0.0)
                .addChild(new Group("bridgewings")
                  .addChild(new Transform("dad_IndexedFaceSet2")
                    .addChild(new Shape("IndexedFaceSet2")
                      .setAppearance(new Appearance()
                        .setMaterial(new Material().setUSE("offwhite_mat")))
                      .setGeometry(new IndexedFaceSet().setCreaseAngle(0.524).setSolid(false).setCoordIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,4,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,14,15,10,-1,14,10,11,-1,14,11,12,-1,14,12,13,-1,8,9,10,-1,8,10,15,-1,0,1,9,-1,0,9,8,-1,1,2,10,-1,1,10,9,-1,2,3,11,-1,2,11,10,-1,3,4,12,-1,3,12,11,-1,4,5,13,-1,4,13,12,-1,5,6,14,-1,5,14,13,-1,6,7,15,-1,6,15,14,-1,7,0,8,-1,7,8,15,-1})
                        .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-72.8,27.3,-24.3,-76.4,27.3,-24.3,-78.9,27.3,-12.1,-78.9,27.3,12.1,-76.4,27.3,24.3,-72.8,27.3,24.3,-72.8,27.3,12.2,-72.8,27.3,-12.2,-72.8,25.3,-24.3,-76.4,25.3,-24.3,-78.9,24.3,-12.1,-78.9,24.3,12.1,-76.4,25.3,24.3,-72.8,25.3,24.3,-72.8,24.3,12.2,-72.8,24.3,-12.2}))))))
                  .addChild(new Transform("dad_antennas").setTranslation(-76.0,29.0,0.0)
                    .addChild(new Group("antennas")
                      .addChild(new Transform("dad_Reference12").setTranslation(0.0,0.0,-10.0)
                        .addChild(new Shape("antennanode")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material().setUSE("offwhite_mat")))
                          .setGeometry(new Cone().setBottomRadius(0.100).setHeight(20.000))))
                      .addChild(new Transform("dad_Reference13").setScale(1.0,.5,1.0).setTranslation(0.0,4.0,20.0)
                        .addChild(new Shape().setUSE("antennanode")))
                      .addChild(new Transform("dad_Reference14").setScale(1.0,.5,1.0).setTranslation(0.0,4.0,-20.0)
                        .addChild(new Shape().setUSE("antennanode")))
                      .addChild(new Viewpoint("A_vp").setDescription("look at the masts").setOrientation(-.414,.811,.414,1.779).setPosition(40.0,70.0,0.0))
                      .addChild(new Transform("dad_antennanode").setTranslation(0.0,0.0,10.0)
                        .addChild(new Shape().setUSE("antennanode")))))
                  .addChild(new Transform("dad_radar").setTranslation(-77.0,28.0,5.0)
                    .addChild(new Group("radar")
                      .addChild(new Transform("dad_radarPost")
                        .addChild(new Shape("radarPost")
                          .setAppearance(new Appearance()
                            .setMaterial(new Material("material27_mat").setDiffuseColor(1.0,.8,.3).setShininess(0.100).setSpecularColor(.2,.2,0.0)))
                          .setGeometry(new Cylinder().setBottom(false).setHeight(5.000).setRadius(0.2).setTop(false))))
                      .addChild(new Transform("dad_RadarHousing").setTranslation(0.0,3.0,0.0)
                        .addChild(new Group("RadarHousing")
                          .addChild(new Transform("dad_Sphere1").setTranslation(0.0,.5,0.0)
                            .addChild(new Shape("Sphere1")
                              .setAppearance(new Appearance()
                                .setMaterial(new Material().setUSE("offwhite_mat")))
                              .setGeometry(new Sphere())))
                          .addChild(new Transform("dad_Cylinder1")
                            .addChild(new Shape("Cylinder1")
                              .setAppearance(new Appearance()
                                .setMaterial(new Material().setUSE("offwhite_mat")))
                              .setGeometry(new Cylinder().setHeight(1.200).setTop(false))))))))))
              .addChild(new Transform("dad_smokestack")
                .addChild(new Group("smokestack")
                  .addChild(new Transform("dad_SweptSurface1")
                    .addChild(new Shape("SweptSurface1")
                      .setAppearance(new Appearance()
                        .setMaterial(new Material("material28_mat").setDiffuseColor(.1,.1,.1).setShininess(0.300).setSpecularColor(.1,.1,.1)))
                      .setGeometry(new IndexedFaceSet().setCreaseAngle(0.524).setCoordIndex(new int[] {0,1,6,-1,0,6,5,-1,1,2,7,-1,1,7,6,-1,2,3,8,-1,2,8,7,-1,3,4,9,-1,3,9,8,-1,5,6,7,-1,5,7,8,-1,3,2,1,-1,3,1,0,-1})
                        .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-104.12189,15.87881,-4.88,-112.87762,16.15243,-4.88,-112.87762,16.15243,4.88,-104.12189,15.87881,4.88,-104.12189,15.87881,-4.88,-104.59142,31.90911,-3.66,-111.15821,32.11432,-3.66,-111.15821,32.11432,3.66,-104.59142,31.90911,3.66,-104.59142,31.90911,-3.66}))))))
                  .addChild(new Transform("dad_smokestackexhaust").setTranslation(-107.0,33.0,0.0)
                    .addChild(new Shape("smokestackexhaust")
                      .setAppearance(new Appearance()
                        .setMaterial(new Material("material29_mat").setDiffuseColor(.1,.1,.1).setShininess(0.300).setSpecularColor(.1,.1,.1)))
                      .setGeometry(new Cylinder().setHeight(4.000).setRadius(1.800))))))))))));
            }
            catch (Exception ex)
            {       
                System.err.println ("*** Further hints on X3DJSAIL errors and exceptions at");
                System.err.println ("*** https://www.web3d.org/specifications/java/X3DJSAIL.html");
                throw (ex);
            }
	}
	// end of initialize() method

		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_10_79_coordIndex_1()
		{
			int[] value = {0,1,20,-1,0,20,19,-1,1,2,21,-1,1,21,20,-1,2,3,22,-1,2,22,21,-1,3,4,23,-1,3,23,22,-1,4,5,24,-1,4,24,23,-1,5,6,25,-1,5,25,24,-1,6,7,26,-1,6,26,25,-1,7,8,27,-1,7,27,26,-1,8,9,28,-1,8,28,27,-1,9,10,29,-1,9,29,28,-1,10,11,30,-1,10,30,29,-1,11,12,31,-1,11,31,30,-1,12,13,32,-1,12,32,31,-1,13,14,33,-1,13,33,32,-1,14,15,34,-1,14,34,33,-1,15,16,35,-1,15,35,34,-1,16,17,36,-1,16,36,35,-1,17,18,37,-1,17,37,36,-1,19,20,39,-1,19,39,38,-1,20,21,40,-1,20,40,39,-1,21,22,41,-1,21,41,40,-1,22,23,42,-1,22,42,41,-1,23,24,43,-1,23,43,42,-1,24,25,44,-1,24,44,43,-1,25,26,45,-1,25,45,44,-1,26,27,46,-1,26,46,45,-1,27,28,47,-1,27,47,46,-1,28,29,48,-1,28,48,47,-1,29,30,49,-1,29,49,48,-1,30,31,50,-1,30,50,49,-1,31,32,51,-1,31,51,50,-1,32,33,52,-1,32,52,51,-1,33,34,53,-1,33,53,52,-1,34,35,54,-1,34,54,53,-1,35,36,55,-1,35,55,54,-1,36,37,56,-1,36,56,55,-1,17,16,15,-1,17,15,14,-1,17,14,13,-1,17,13,12,-1,17,12,11,-1,17,11,10,-1,17,10,9,-1,17,9,8,-1,17,8,7,-1,17,7,6,-1,17,6,5,-1,17,5,4,-1,17,4,3,-1,17,3,2,-1,17,2,1,-1,17,1,0,-1};
			return value;
		}

		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=10, element #79, 352 total numbers.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFInt32 getIndexedFaceSet_10_79_coordIndex()
		{
			MFInt32 IndexedFaceSet_10_79_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_10_79_coordIndex_1()));
			return IndexedFaceSet_10_79_coordIndex;
		}

	/** The initialized model object, created within initialize() method. */
	private X3D x3dModel;

	/** 
	 * Provide a 
	 * <a href="https://dzone.com/articles/java-copy-shallow-vs-deep-in-which-you-will-swim" target="_blank">shallow copy</a>
	 * of the X3D model.
	 * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/Core/X3D.html">X3D</a>
	 * @return OilTanker model
	 */
	public X3D getX3dModel()
	{	  
		return x3dModel;
	}
	   
    /** 
     * Default main() method provided for test purposes, uses CommandLine to set global ConfigurationProperties for this object.
     * @param args array of input parameters, provided as arguments
     * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/Core/X3D.html#handleArguments-java.lang.String:A-">X3D.handleArguments(args)</a>
     * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/Core/X3D.html#validationReport--">X3D.validationReport()</a>
     * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/CommandLine.html">CommandLine</a>
     * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/CommandLine.html#USAGE">CommandLine.USAGE</a>
     * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/ConfigurationProperties.html">ConfigurationProperties</a>
     */
    public static void main(String args[])
    {
        System.out.println("Build this X3D model, showing validation diagnostics...");
        X3D thisExampleX3dModel = new OilTanker().getX3dModel();
//      System.out.println("X3D model construction complete.");
	
        // next handle command line arguments
        boolean hasArguments = (args != null) && (args.length > 0);
        boolean validate = true; // default
        boolean argumentsLoadNewModel = false;
        String  fileName = new String();

        if (args != null)
        {
                for (String arg : args)
                {
                        if (arg.toLowerCase().startsWith("-v") || arg.toLowerCase().contains("validate"))
                        {
                                validate = true; // making sure
                        }
                        if (arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_X3D) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_CLASSICVRML) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_X3DB) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_VRML97) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_EXI) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_GZIP) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_ZIP) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_HTML) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_XHTML))
                        {
                                argumentsLoadNewModel = true;
                                fileName = arg;
                        }
                }
        }
        if      (argumentsLoadNewModel)
                System.out.println("WARNING: \"Savage.ShipsCivilian.CargoShips.OilTanker\" model invocation is attempting to load file \"" + fileName + "\" instead of simply validating itself... file loading ignored.");
        else if (hasArguments) // if no arguments provided, this method produces usage warning
                thisExampleX3dModel.handleArguments(args);
	
        if (validate)
        {
            //  System.out.println("--- TODO fix duplicated outputs ---"); // omit when duplicated outputs problem is solved/refactored
		String validationResults = thisExampleX3dModel.validationReport();
            //  System.out.println("-----------------------------------"); // omit when duplicated outputs problem is solved/refactored
                System.out.print("Savage.ShipsCivilian.CargoShips.OilTanker self-validation test confirmation: ");
                if (!validationResults.equals("success"))
                    System.out.println();
                System.out.println(validationResults.trim());

                // experimental: test X3DJSAIL output files
                // ShipsCivilian/CargoShips/OilTanker_JavaExport.* file validation is checked when building X3D Example Archives
                String filenameX3D  = "ShipsCivilian/CargoShips/OilTanker_JavaExport.x3d"; 
                String filenameX3DV = "ShipsCivilian/CargoShips/OilTanker_JavaExport.x3dv"; 
                String filenameJSON = "ShipsCivilian/CargoShips/OilTanker_JavaExport.json";
                thisExampleX3dModel.toFileX3D        (filenameX3D);
                thisExampleX3dModel.toFileClassicVRML(filenameX3DV);
// TODO         thisExampleX3dModel.toFileJSON       (filenameJSON);
        }
    }
}
