Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Apply suggestions from code review
  • Loading branch information
tannergooding authored Jun 13, 2020
commit b02547625d6c591423f2a3022f64ad85c8fec0b7
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using System;
// 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.

using System;
using System.Globalization;
using System.Runtime.CompilerServices;
using System.Security.Cryptography;
Expand All @@ -12,10 +16,12 @@ public struct Vector3<T> : IEquatable<Vector3<T>>, IFormattable
/// The X component of the vector.
/// </summary>
public T X { get; }

/// <summary>
/// The Y component of the vector.
/// </summary>
public T Y { get; }

/// <summary>
/// The Z component of the vector.
/// </summary>
Expand Down