Thursday, November 15, 2018

mathematics - How do I find the circumcenter of a triangle in 3D?


I want to find the circumcenter of a triangle. Wolfram only shows how to find the circumcircle of a triangle in R2. How can I find the circumcenter of a triangle in R3?



Answer



The circumcenter of a triangle can be found by the following formula, which I mined from an old posting by Jonathan Shewchuk from the Geometry Junkyard


Triangle in R3:m=a+


Where $m$ is the circumcenter of the triangle.



Some C++ code, given Vector3f's with overloaded +, -,


Vector3f a,b,c // are the 3 pts of the tri

Vector3f ac = c - a ;
Vector3f ab = b - a ;
Vector3f abXac = ab.cross( ac ) ;

// this is the vector from a TO the circumsphere center
Vector3f toCircumsphereCenter = (abXac.cross( ab )*ac.len2() + ac.cross( abXac )*ab.len2()) / (2.f*abXac.len2()) ;
float circumsphereRadius = toCircumsphereCenter.len() ;


// The 3 space coords of the circumsphere center then:
Vector3f ccs = a + toCircumsphereCenter ; // now this is the actual 3space location

Here is a picture of a triangle and its circumsphere


enter image description here


No comments:

Post a Comment

Simple past, Present perfect Past perfect

Can you tell me which form of the following sentences is the correct one please? Imagine two friends discussing the gym... I was in a good s...