new Vertex(centerPoint.x + radiusX/2.5f, centerPoint.y, centerPoint.z),
new Vertex(centerPoint.x - radiusX/3f, centerPoint.y + radiusY/3f, centerPoint.z),
new Vertex(centerPoint.x - radiusX/3f, centerPoint.y - radiusY/3f, centerPoint.z),
};
MTPolygon triangle = new MTPolygon(pApplet, vertices);
triangle.setPickable(false);
triangle.setNoFill(true);
triangle.setStrokeColor(new MTColor(0,0,0,255));
triangle.setStrokeWeight(1.5f);
this.addChild(triangle);
this.setComposite(true);
this.setPickable(false); //We tap on the movie itself instead
this.setFillColor(new MTColor(150,150,150,255));