<Dome|User's Guide|Icosahedron>
See Javadoc
Hexagon defines a six-sided Polygon. Defined by a radius, six line segments are projected from a center each at a 60 degree angle from the lines next to it. This is a two dimensional object projected into three dimensional space.
In jME to define a Hexagon, simply supply the radius (or sideLength).
//We will build a Hexagon with sides of length 10 Hexagon h = new Hexagon("Hexagon", 10);