Hi Dan,
So... a little later I actually 'got my nerd on' and managed to get the full vertex data including tangents to a text file.
Now I'm stuck getting the script to draw the shape as a shape layer.
I found examples for generic built-in Ellipses etc, but I can't figure out where exactly to put my vertex data... This must be one of the least travelled areas of AE scripting...
This is what I got for drawing a generic Ellipse:
var myEllipseSize = [100,200];
var myStrokeColor = [1,0,0];
var myShapeLayer= thisComp.layers.addShape();
var myShapeLayerContents = myShapeLayer.property("ADBE Root Vectors Group");
var myShapeGroup = myShapeLayerContents.addProperty("ADBE Vector Group");
myShapeGroup.name = "Circle";
var myEllipse = focusShapeGroup.property("ADBE Vectors Group").addProperty("ADBE Vector Shape - Ellipse");
myEllipse.property("ADBE Vector Ellipse Size").setValue(myEllipseSize);
And I get that I need to take out the Ellipse bits, but I'm missing something somewhere...
Any pointers would once again be much appreciated!
Raamw3rk - independent colourist and visual effects artist