style: Do not use double star in docs
This commit is contained in:
parent
c0e516d9bf
commit
a133ca3274
3 changed files with 3 additions and 6 deletions
|
@ -4,8 +4,7 @@
|
|||
bool Plane::intersect(
|
||||
const Ray & ray, const double min_t, double & t, Eigen::Vector3d & n) const
|
||||
{
|
||||
/**
|
||||
* Based on
|
||||
/* Based on
|
||||
* Computer Graphics, Chapter 4. Ray Tracing
|
||||
* Peter Lamber & Glenn Van Wallendael
|
||||
*/
|
||||
|
|
|
@ -3,8 +3,7 @@
|
|||
bool Sphere::intersect(
|
||||
const Ray & ray, const double min_t, double & t, Eigen::Vector3d & n) const
|
||||
{
|
||||
/**
|
||||
* Based on
|
||||
/* Based on
|
||||
* Fundamentals in Computer Graphics - Fourth Edition, Chapter 4.4.1. Ray-Sphere Intersection.
|
||||
* Steve Marschner & Peter Shirley
|
||||
*/
|
||||
|
|
|
@ -8,8 +8,7 @@ void viewing_ray(
|
|||
const int height,
|
||||
Ray & ray)
|
||||
{
|
||||
/**
|
||||
* Based on
|
||||
/* Based on
|
||||
* Fundamentals in Computer Graphics - Fourth Edition, Chapter 4.3.2 Perspective views.
|
||||
* Steve Marschner & Peter Shirley
|
||||
*/
|
||||
|
|
Reference in a new issue