}
Appearance trunkAppearance = new Appearance();
AppearanceFactory.setColorWithMaterial(trunkAppearance, ColorConstants.brown, new Color3f(0.15f, 0.15f, 0.15f),
new Color3f(0.05f, 0.05f, 0.05f));
trunkCylinder = new Cylinder(trunk.getRadius(), trunk.getHeight(), trunkAppearance);
Vector3d translationVector = new Vector3d();
translationVector.setY(trunk.getHeight() / 2);
TransformGroup transformGroup = TransformerHelper.getTranslationTransformGroup(translationVector);
transformGroup.addChild(trunkCylinder);
this.group = new Group();
group.addChild(transformGroup);
}