-
Notifications
You must be signed in to change notification settings - Fork 70
Open
Description
The first if statement in the following code snippet (in file ssBVH_Node.cs)
// perform the best rotation...
if (bestRot.rot != Rot.NONE) {
// if the best rotation is no-rotation... we check our parents anyhow..
if (parent != null) {
// but only do it some random percentage of the time.
if ((DateTime.Now.Ticks % 100) < 2) {
bvh.refitNodes.Add(parent);
}
}
} else {
// ...
}
should be replace by the following line of code???
if (bestRot.rot == Rot.NONE) {
Metadata
Metadata
Assignees
Labels
No labels