Bumped up distances for clipping plane points.
This commit is contained in:
parent
091f81edcb
commit
ddb3b5efa3
@ -39,10 +39,10 @@ TPlanePoints GetPlanePoints(const TVector3f* _kpPoints, const size_t _kNumPoints
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Find Tangent
|
// Find Tangent
|
||||||
const TVector3f kTangent = ScalarMultiply(TVector3f(), Normalize(TVector3f(), Subtract(TVector3f(), _kpPoints[1], _kpPoints[0])), fWidth);
|
const TVector3f kTangent = ScalarMultiply(TVector3f(), Normalize(TVector3f(), Subtract(TVector3f(), _kpPoints[1], _kpPoints[0])), fWidth*10.0f);
|
||||||
|
|
||||||
// Find BiTangent
|
// Find BiTangent
|
||||||
const TVector3f kBiTangent = ScalarMultiply(TVector3f(), Normalize(TVector3f(), CrossProduct(TVector3f(), kNormal, kTangent)), fWidth);
|
const TVector3f kBiTangent = ScalarMultiply(TVector3f(), Normalize(TVector3f(), CrossProduct(TVector3f(), kNormal, kTangent)), fWidth*10.0f);
|
||||||
|
|
||||||
PlanePoints.m_A = Add(TVector3f(), kCenter, kBiTangent);
|
PlanePoints.m_A = Add(TVector3f(), kCenter, kBiTangent);
|
||||||
PlanePoints.m_B = kCenter;
|
PlanePoints.m_B = kCenter;
|
||||||
|
Loading…
Reference in New Issue
Block a user