summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Performance/CodeQuality/SIMD/RayTracer/Ray.cs
blob: a2d91fb07cc64408371ed10fdd95d35d9dfed46d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
//

internal struct Ray
{
    public Vector Start;
    public Vector Dir;

    public Ray(Vector start, Vector dir) { Start = start; Dir = dir; }
}