views:

433

answers:

1

I'm trying to port some code to silverlight.

Is there an equilavent of System.Windows.Vector for silverlight?

+1  A: 

I use Vector2 and Vector3 from the MonoXNA project:

http://monoxna.googlecode.com/svn/trunk/src/Microsoft.Xna.Framework/

Bill Reiss