How to compute the cross-product?

Posted by WizardOfOdds on Stack Overflow See other posts from Stack Overflow or by WizardOfOdds
Published on 2010-03-28T13:17:43Z Indexed on 2010/03/28 15:03 UTC
Read the original article Hit count: 265

Filed under:
|

I have the following piece of pseudo-C/Java/C# code:

int a[]= { 30, 20 };
int b[] = { 40, 50 };
int c[] = {12, 12};

How do I compute the cross-product ABxAC?

© Stack Overflow or respective owner

Related posts about math

Related posts about cross-product