forked from microsoft/dotnet-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDisc.cs
37 lines (33 loc) · 1.07 KB
/
Disc.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using RayTracer.Materials;
using System.Numerics;
namespace RayTracer.Objects
{
/// <summary>
/// A two-dimensional circular plane object. Limited in radius rather than extending infinitely.
/// </summary>
public class Disc : InfinitePlane
{
private float radius;
public Disc(Vector3 centerPosition, Material material, Vector3 normalDirection, float radius, float cellWidth)
: base(centerPosition, material, normalDirection, cellWidth)
{
this.radius = radius;
}
public override bool TryCalculateIntersection(Ray ray, out Intersection intersection)
{
if (base.TryCalculateIntersection(ray, out intersection) && WithinArea(intersection.Point))
{
return true;
}
else
{
return false;
}
}
private bool WithinArea(Vector3 location)
{
var distanceFromCenter = (this.Position - location).Magnitude();
return distanceFromCenter <= radius;
}
}
}