- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
From the release notes ..."For sphere geometries the intersection filter gets now invoked for front and back hit."
This is slightly annoying as now I get two calls to the intersectFilter for each sphere. I would like to "ignore" the second hit ( I just care that the ray hit the sphere). I process each hit as it happens, so I have no record of the previous hit. Any suggestions on how to ignore the back hit? Although the change did not break my algorithm, it doubles the hit-processing time.
コピーされたリンク
1 返信
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
I found a simple solution. In the intersection routine find the "t" where the ray is closest to the center of the sphere. Compare this to the "tFar" of the ray in the the intersection filter. if tFar>t then it is the "back" intersection.
