mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-13 01:05:40 +00:00
Fix xmldoc wording in Polygon and Polyhedron
It's a class now, not a struct
This commit is contained in:
parent
eaa88ce11a
commit
f5af7b9513
@ -22,7 +22,7 @@ public class Polygon : IEquatable<Polygon>
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Initializes a new instance of the <see cref="Polygon" /> struct by copying the specified polygon.
|
/// Initializes a new instance of the <see cref="Polygon" /> class by copying the specified polygon.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Polygon(Polygon polygon)
|
public Polygon(Polygon polygon)
|
||||||
: this(polygon._vertices)
|
: this(polygon._vertices)
|
||||||
@ -30,7 +30,7 @@ public class Polygon : IEquatable<Polygon>
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Initializes a new instance of the <see cref="Polygon" /> struct by constructing it from the specified vertices.
|
/// Initializes a new instance of the <see cref="Polygon" /> class by constructing it from the specified vertices.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="vertices">An enumerable collection of vertices from which the polygon should be constructed.</param>
|
/// <param name="vertices">An enumerable collection of vertices from which the polygon should be constructed.</param>
|
||||||
public Polygon(IEnumerable<Point> vertices)
|
public Polygon(IEnumerable<Point> vertices)
|
||||||
|
@ -23,7 +23,7 @@ public class Polyhedron : IEquatable<Polyhedron>
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Initializes a new instance of the <see cref="Polyhedron" /> struct by copying the specified polyhedron.
|
/// Initializes a new instance of the <see cref="Polyhedron" /> class by copying the specified polyhedron.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Polyhedron(Polyhedron polyhedron)
|
public Polyhedron(Polyhedron polyhedron)
|
||||||
: this(polyhedron._vertices)
|
: this(polyhedron._vertices)
|
||||||
@ -31,7 +31,7 @@ public class Polyhedron : IEquatable<Polyhedron>
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Initializes a new instance of the <see cref="Polyhedron" /> struct by constructing it from the specified vertices.
|
/// Initializes a new instance of the <see cref="Polyhedron" /> class by constructing it from the specified vertices.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="vertices">An enumerable collection of vertices from which the polyhedron should be constructed.</param>
|
/// <param name="vertices">An enumerable collection of vertices from which the polyhedron should be constructed.</param>
|
||||||
public Polyhedron(IEnumerable<Vector3> vertices)
|
public Polyhedron(IEnumerable<Vector3> vertices)
|
||||||
|
Loading…
Reference in New Issue
Block a user