Page 1 of 1

drawing a stroked line in 3D

Posted: January 11th, 2008, 8:59 am
by tpassow
Hello,

I am trying to figure out how to achieve a stroked line viewable in with a 3D camera. As seen in the Target Corp. video in the portfolio section of Exopolis. (4th row down)
http://www.exopolis.com/home/portfolio.php

I have been trying to get Trapcode's 3D Stroke to work, but there doesn't same to be a away to pin a start and end in that plugin. :(

any ideas would be great.

thanks!

Tom

Posted: January 11th, 2008, 10:25 am
by Paul Tuersley
Create 2 x 3D nulls for your start and end points, then apply the Beam effect to a 2D layer / adjustment layer and use expressions like this on each of the Beam's Start and End properties:

Code: Select all

a = thisComp.layer("start null"); 
a.toComp(a.anchorPoint);

Posted: January 14th, 2008, 6:37 am
by Atomic
There is some nice work on exopolis.

Posted: January 14th, 2008, 4:26 pm
by tpassow
Excellent, Paul! works great! thanks!