示例#1
0
文件: Sphere.cpp 项目: juj/MathGeoLib
Sphere::Sphere(const vec &a, const vec &b, const vec &c, const vec &d)
{
	*this = FitThroughPoints(a, b, c, d);
}
示例#2
0
Sphere::Sphere(const float3 &a, const float3 &b, const float3 &c, const float3 &d)
{
	*this = FitThroughPoints(a, b, c, d);
}
示例#3
0
文件: Sphere.cpp 项目: juj/MathGeoLib
Sphere::Sphere(const vec &a, const vec &b)
{
	*this = FitThroughPoints(a, b);
}
示例#4
0
Sphere::Sphere(const float3 &a, const float3 &b)
{
	*this = FitThroughPoints(a, b);
}