1615 lines
73 KiB
YAML
1615 lines
73 KiB
YAML
### YamlMime:ManagedReference
|
|
items:
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
commentId: T:Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
id: AABB
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry
|
|
children:
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.#ctor(Misaki.HighPerformance.Mathematics.float3,Misaki.HighPerformance.Mathematics.float3)
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.Center
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains(Misaki.HighPerformance.Mathematics.float3)
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndExtents(Misaki.HighPerformance.Mathematics.float3,Misaki.HighPerformance.Mathematics.float3)
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndHalfExtents(Misaki.HighPerformance.Mathematics.float3,Misaki.HighPerformance.Mathematics.float3)
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.Encapsulate(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.Encapsulate(Misaki.HighPerformance.Mathematics.float3)
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.Equals(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.Equals(System.Object)
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.Expand(System.Single)
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.Extents
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.GetHashCode
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.HalfExtents
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.IsValid
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.Max
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.Min
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.Overlaps(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.SurfaceArea
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.ToString
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.Zero
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.op_Equality(Misaki.HighPerformance.Mathematics.Geometry.AABB,Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
- Misaki.HighPerformance.Mathematics.Geometry.AABB.op_Inequality(Misaki.HighPerformance.Mathematics.Geometry.AABB,Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: AABB
|
|
nameWithType: AABB
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
type: Struct
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: AABB
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 7
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
summary: Represents an axis-aligned bounding box (AABB) defined by minimum and maximum points in 3D space.
|
|
example: []
|
|
syntax:
|
|
content: 'public struct AABB : IEquatable<AABB>'
|
|
content.vb: Public Structure AABB Implements IEquatable(Of AABB)
|
|
implements:
|
|
- System.IEquatable{Misaki.HighPerformance.Mathematics.Geometry.AABB}
|
|
inheritedMembers:
|
|
- System.Object.Equals(System.Object,System.Object)
|
|
- System.Object.GetType
|
|
- System.Object.ReferenceEquals(System.Object,System.Object)
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Min
|
|
commentId: P:Misaki.HighPerformance.Mathematics.Geometry.AABB.Min
|
|
id: Min
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Min
|
|
nameWithType: AABB.Min
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Min
|
|
type: Property
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: Min
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 16
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
summary: The minimum point contained by the AABB.
|
|
remarks: If any component of <xref href="Misaki.HighPerformance.Mathematics.Geometry.AABB.Min" data-throw-if-not-resolved="false"></xref> is greater than <xref href="Misaki.HighPerformance.Mathematics.Geometry.AABB.Max" data-throw-if-not-resolved="false"></xref> then this AABB is invalid.
|
|
example: []
|
|
syntax:
|
|
content: public float3 Min { readonly get; set; }
|
|
parameters: []
|
|
return:
|
|
type: Misaki.HighPerformance.Mathematics.float3
|
|
content.vb: Public Property Min As float3
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.Min*
|
|
seealso:
|
|
- linkId: Misaki.HighPerformance.Mathematics.Geometry.AABB.IsValid
|
|
commentId: P:Misaki.HighPerformance.Mathematics.Geometry.AABB.IsValid
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Max
|
|
commentId: P:Misaki.HighPerformance.Mathematics.Geometry.AABB.Max
|
|
id: Max
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Max
|
|
nameWithType: AABB.Max
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Max
|
|
type: Property
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: Max
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 28
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
summary: The maximum point contained by the AABB.
|
|
remarks: If any component of <xref href="Misaki.HighPerformance.Mathematics.Geometry.AABB.Max" data-throw-if-not-resolved="false"></xref> is less than <xref href="Misaki.HighPerformance.Mathematics.Geometry.AABB.Min" data-throw-if-not-resolved="false"></xref> then this AABB is invalid.
|
|
example: []
|
|
syntax:
|
|
content: public float3 Max { readonly get; set; }
|
|
parameters: []
|
|
return:
|
|
type: Misaki.HighPerformance.Mathematics.float3
|
|
content.vb: Public Property Max As float3
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.Max*
|
|
seealso:
|
|
- linkId: Misaki.HighPerformance.Mathematics.Geometry.AABB.IsValid
|
|
commentId: P:Misaki.HighPerformance.Mathematics.Geometry.AABB.IsValid
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.#ctor(Misaki.HighPerformance.Mathematics.float3,Misaki.HighPerformance.Mathematics.float3)
|
|
commentId: M:Misaki.HighPerformance.Mathematics.Geometry.AABB.#ctor(Misaki.HighPerformance.Mathematics.float3,Misaki.HighPerformance.Mathematics.float3)
|
|
id: '#ctor(Misaki.HighPerformance.Mathematics.float3,Misaki.HighPerformance.Mathematics.float3)'
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: AABB(float3, float3)
|
|
nameWithType: AABB.AABB(float3, float3)
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.AABB(Misaki.HighPerformance.Mathematics.float3, Misaki.HighPerformance.Mathematics.float3)
|
|
type: Constructor
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: .ctor
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 42
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
summary: Constructs the AABB with the given minimum and maximum.
|
|
remarks: >-
|
|
If you have a center and extents, you can call <xref href="Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndExtents(Misaki.HighPerformance.Mathematics.float3%2cMisaki.HighPerformance.Mathematics.float3)" data-throw-if-not-resolved="false"></xref> or <xref href="Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndHalfExtents(Misaki.HighPerformance.Mathematics.float3%2cMisaki.HighPerformance.Mathematics.float3)" data-throw-if-not-resolved="false"></xref>
|
|
|
|
to create the AABB.
|
|
example: []
|
|
syntax:
|
|
content: public AABB(float3 min, float3 max)
|
|
parameters:
|
|
- id: min
|
|
type: Misaki.HighPerformance.Mathematics.float3
|
|
description: Minimum point inside AABB.
|
|
- id: max
|
|
type: Misaki.HighPerformance.Mathematics.float3
|
|
description: Maximum point inside AABB.
|
|
content.vb: Public Sub New(min As float3, max As float3)
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.#ctor*
|
|
nameWithType.vb: AABB.New(float3, float3)
|
|
fullName.vb: Misaki.HighPerformance.Mathematics.Geometry.AABB.New(Misaki.HighPerformance.Mathematics.float3, Misaki.HighPerformance.Mathematics.float3)
|
|
name.vb: New(float3, float3)
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndExtents(Misaki.HighPerformance.Mathematics.float3,Misaki.HighPerformance.Mathematics.float3)
|
|
commentId: M:Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndExtents(Misaki.HighPerformance.Mathematics.float3,Misaki.HighPerformance.Mathematics.float3)
|
|
id: CreateFromCenterAndExtents(Misaki.HighPerformance.Mathematics.float3,Misaki.HighPerformance.Mathematics.float3)
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: CreateFromCenterAndExtents(float3, float3)
|
|
nameWithType: AABB.CreateFromCenterAndExtents(float3, float3)
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndExtents(Misaki.HighPerformance.Mathematics.float3, Misaki.HighPerformance.Mathematics.float3)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: CreateFromCenterAndExtents
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 59
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
summary: Creates the AABB from a center and extents.
|
|
remarks: >-
|
|
This function takes full extents. It is the distance between <xref href="Misaki.HighPerformance.Mathematics.Geometry.AABB.Min" data-throw-if-not-resolved="false"></xref> and <xref href="Misaki.HighPerformance.Mathematics.Geometry.AABB.Max" data-throw-if-not-resolved="false"></xref>.
|
|
|
|
If you have half extents, you can call <xref href="Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndHalfExtents(Misaki.HighPerformance.Mathematics.float3%2cMisaki.HighPerformance.Mathematics.float3)" data-throw-if-not-resolved="false"></xref>.
|
|
example: []
|
|
syntax:
|
|
content: public static AABB CreateFromCenterAndExtents(float3 center, float3 extents)
|
|
parameters:
|
|
- id: center
|
|
type: Misaki.HighPerformance.Mathematics.float3
|
|
description: Center of AABB.
|
|
- id: extents
|
|
type: Misaki.HighPerformance.Mathematics.float3
|
|
description: Full extents of AABB.
|
|
return:
|
|
type: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
description: AABB created from inputs.
|
|
content.vb: Public Shared Function CreateFromCenterAndExtents(center As float3, extents As float3) As AABB
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndExtents*
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndHalfExtents(Misaki.HighPerformance.Mathematics.float3,Misaki.HighPerformance.Mathematics.float3)
|
|
commentId: M:Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndHalfExtents(Misaki.HighPerformance.Mathematics.float3,Misaki.HighPerformance.Mathematics.float3)
|
|
id: CreateFromCenterAndHalfExtents(Misaki.HighPerformance.Mathematics.float3,Misaki.HighPerformance.Mathematics.float3)
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: CreateFromCenterAndHalfExtents(float3, float3)
|
|
nameWithType: AABB.CreateFromCenterAndHalfExtents(float3, float3)
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndHalfExtents(Misaki.HighPerformance.Mathematics.float3, Misaki.HighPerformance.Mathematics.float3)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: CreateFromCenterAndHalfExtents
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 75
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
summary: Creates the AABB from a center and half extents.
|
|
remarks: >-
|
|
This function takes half extents. It is half the distance between <xref href="Misaki.HighPerformance.Mathematics.Geometry.AABB.Min" data-throw-if-not-resolved="false"></xref> and <xref href="Misaki.HighPerformance.Mathematics.Geometry.AABB.Max" data-throw-if-not-resolved="false"></xref>.
|
|
|
|
If you have full extents, you can call <xref href="Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndExtents(Misaki.HighPerformance.Mathematics.float3%2cMisaki.HighPerformance.Mathematics.float3)" data-throw-if-not-resolved="false"></xref>.
|
|
example: []
|
|
syntax:
|
|
content: public static AABB CreateFromCenterAndHalfExtents(float3 center, float3 halfExtents)
|
|
parameters:
|
|
- id: center
|
|
type: Misaki.HighPerformance.Mathematics.float3
|
|
description: Center of AABB.
|
|
- id: halfExtents
|
|
type: Misaki.HighPerformance.Mathematics.float3
|
|
description: Half extents of AABB.
|
|
return:
|
|
type: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
description: AABB created from inputs.
|
|
content.vb: Public Shared Function CreateFromCenterAndHalfExtents(center As float3, halfExtents As float3) As AABB
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndHalfExtents*
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Zero
|
|
commentId: P:Misaki.HighPerformance.Mathematics.Geometry.AABB.Zero
|
|
id: Zero
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Zero
|
|
nameWithType: AABB.Zero
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Zero
|
|
type: Property
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: Zero
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 84
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
summary: Creates a new AABB with zero extents, centered at the origin.
|
|
example: []
|
|
syntax:
|
|
content: public static AABB Zero { get; }
|
|
parameters: []
|
|
return:
|
|
type: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
content.vb: Public Shared ReadOnly Property Zero As AABB
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.Zero*
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Extents
|
|
commentId: P:Misaki.HighPerformance.Mathematics.Geometry.AABB.Extents
|
|
id: Extents
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Extents
|
|
nameWithType: AABB.Extents
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Extents
|
|
type: Property
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: Extents
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 99
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
summary: Computes the extents of the AABB.
|
|
remarks: Extents is the componentwise distance between min and max.
|
|
example: []
|
|
syntax:
|
|
content: public readonly float3 Extents { get; }
|
|
parameters: []
|
|
return:
|
|
type: Misaki.HighPerformance.Mathematics.float3
|
|
content.vb: Public ReadOnly Property Extents As float3
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.Extents*
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.HalfExtents
|
|
commentId: P:Misaki.HighPerformance.Mathematics.Geometry.AABB.HalfExtents
|
|
id: HalfExtents
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: HalfExtents
|
|
nameWithType: AABB.HalfExtents
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.HalfExtents
|
|
type: Property
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: HalfExtents
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 108
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
summary: Computes the half extents of the AABB.
|
|
remarks: >-
|
|
HalfExtents is half of the componentwise distance between min and max. Subtracting HalfExtents from Center
|
|
|
|
gives Min and adding HalfExtents to Center gives Max.
|
|
example: []
|
|
syntax:
|
|
content: public readonly float3 HalfExtents { get; }
|
|
parameters: []
|
|
return:
|
|
type: Misaki.HighPerformance.Mathematics.float3
|
|
content.vb: Public ReadOnly Property HalfExtents As float3
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.HalfExtents*
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Center
|
|
commentId: P:Misaki.HighPerformance.Mathematics.Geometry.AABB.Center
|
|
id: Center
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Center
|
|
nameWithType: AABB.Center
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Center
|
|
type: Property
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: Center
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 113
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
summary: Computes the center of the AABB.
|
|
example: []
|
|
syntax:
|
|
content: public readonly float3 Center { get; }
|
|
parameters: []
|
|
return:
|
|
type: Misaki.HighPerformance.Mathematics.float3
|
|
content.vb: Public ReadOnly Property Center As float3
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.Center*
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.IsValid
|
|
commentId: P:Misaki.HighPerformance.Mathematics.Geometry.AABB.IsValid
|
|
id: IsValid
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: IsValid
|
|
nameWithType: AABB.IsValid
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.IsValid
|
|
type: Property
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: IsValid
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 122
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
summary: Check if the AABB is valid.
|
|
remarks: An AABB is considered valid if <xref href="Misaki.HighPerformance.Mathematics.Geometry.AABB.Min" data-throw-if-not-resolved="false"></xref> is componentwise less than or equal to <xref href="Misaki.HighPerformance.Mathematics.Geometry.AABB.Max" data-throw-if-not-resolved="false"></xref>.
|
|
example: []
|
|
syntax:
|
|
content: public readonly bool IsValid { get; }
|
|
parameters: []
|
|
return:
|
|
type: System.Boolean
|
|
description: True if <xref href="Misaki.HighPerformance.Mathematics.Geometry.AABB.Min" data-throw-if-not-resolved="false"></xref> is componentwise less than or equal to <xref href="Misaki.HighPerformance.Mathematics.Geometry.AABB.Max" data-throw-if-not-resolved="false"></xref>.
|
|
content.vb: Public ReadOnly Property IsValid As Boolean
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.IsValid*
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.SurfaceArea
|
|
commentId: P:Misaki.HighPerformance.Mathematics.Geometry.AABB.SurfaceArea
|
|
id: SurfaceArea
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: SurfaceArea
|
|
nameWithType: AABB.SurfaceArea
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.SurfaceArea
|
|
type: Property
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: SurfaceArea
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 127
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
summary: Computes the surface area for this axis aligned bounding box.
|
|
example: []
|
|
syntax:
|
|
content: public readonly float SurfaceArea { get; }
|
|
parameters: []
|
|
return:
|
|
type: System.Single
|
|
content.vb: Public ReadOnly Property SurfaceArea As Single
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.SurfaceArea*
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains(Misaki.HighPerformance.Mathematics.float3)
|
|
commentId: M:Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains(Misaki.HighPerformance.Mathematics.float3)
|
|
id: Contains(Misaki.HighPerformance.Mathematics.float3)
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Contains(float3)
|
|
nameWithType: AABB.Contains(float3)
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains(Misaki.HighPerformance.Mathematics.float3)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: Contains
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 141
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
summary: Tests if the input point is contained by the AABB.
|
|
example: []
|
|
syntax:
|
|
content: public readonly bool Contains(float3 point)
|
|
parameters:
|
|
- id: point
|
|
type: Misaki.HighPerformance.Mathematics.float3
|
|
description: Point to test.
|
|
return:
|
|
type: System.Boolean
|
|
description: True if AABB contains the input point.
|
|
content.vb: Public Function Contains(point As float3) As Boolean
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains*
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
commentId: M:Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
id: Contains(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Contains(AABB)
|
|
nameWithType: AABB.Contains(AABB)
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: Contains
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 149
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
summary: Tests if the input AABB is contained entirely by this AABB.
|
|
example: []
|
|
syntax:
|
|
content: public readonly bool Contains(AABB aabb)
|
|
parameters:
|
|
- id: aabb
|
|
type: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
description: AABB to test.
|
|
return:
|
|
type: System.Boolean
|
|
description: True if input AABB is contained entirely by this AABB.
|
|
content.vb: Public Function Contains(aabb As AABB) As Boolean
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains*
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Overlaps(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
commentId: M:Misaki.HighPerformance.Mathematics.Geometry.AABB.Overlaps(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
id: Overlaps(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Overlaps(AABB)
|
|
nameWithType: AABB.Overlaps(AABB)
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Overlaps(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: Overlaps
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 157
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
summary: Tests if the input AABB overlaps this AABB.
|
|
example: []
|
|
syntax:
|
|
content: public readonly bool Overlaps(AABB aabb)
|
|
parameters:
|
|
- id: aabb
|
|
type: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
description: AABB to test.
|
|
return:
|
|
type: System.Boolean
|
|
description: True if input AABB overlaps with this AABB.
|
|
content.vb: Public Function Overlaps(aabb As AABB) As Boolean
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.Overlaps*
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Expand(System.Single)
|
|
commentId: M:Misaki.HighPerformance.Mathematics.Geometry.AABB.Expand(System.Single)
|
|
id: Expand(System.Single)
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Expand(float)
|
|
nameWithType: AABB.Expand(float)
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Expand(float)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: Expand
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 170
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
summary: Expands the AABB by the given signed distance.
|
|
remarks: Positive distance expands the AABB while negative distance shrinks the AABB.
|
|
example: []
|
|
syntax:
|
|
content: public void Expand(float signedDistance)
|
|
parameters:
|
|
- id: signedDistance
|
|
type: System.Single
|
|
description: Signed distance to expand the AABB with.
|
|
content.vb: Public Sub Expand(signedDistance As Single)
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.Expand*
|
|
nameWithType.vb: AABB.Expand(Single)
|
|
fullName.vb: Misaki.HighPerformance.Mathematics.Geometry.AABB.Expand(Single)
|
|
name.vb: Expand(Single)
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Encapsulate(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
commentId: M:Misaki.HighPerformance.Mathematics.Geometry.AABB.Encapsulate(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
id: Encapsulate(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Encapsulate(AABB)
|
|
nameWithType: AABB.Encapsulate(AABB)
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Encapsulate(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: Encapsulate
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 186
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
summary: Encapsulates the given AABB.
|
|
remarks: >-
|
|
Modifies this AABB so that it contains the given AABB. If the given AABB is already contained by this AABB,
|
|
|
|
then this AABB doesn't change.
|
|
example: []
|
|
syntax:
|
|
content: public void Encapsulate(AABB aabb)
|
|
parameters:
|
|
- id: aabb
|
|
type: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
description: AABB to encapsulate.
|
|
content.vb: Public Sub Encapsulate(aabb As AABB)
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.Encapsulate*
|
|
seealso:
|
|
- linkId: Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
commentId: M:Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Encapsulate(Misaki.HighPerformance.Mathematics.float3)
|
|
commentId: M:Misaki.HighPerformance.Mathematics.Geometry.AABB.Encapsulate(Misaki.HighPerformance.Mathematics.float3)
|
|
id: Encapsulate(Misaki.HighPerformance.Mathematics.float3)
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Encapsulate(float3)
|
|
nameWithType: AABB.Encapsulate(float3)
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Encapsulate(Misaki.HighPerformance.Mathematics.float3)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: Encapsulate
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 202
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
summary: Encapsulate the given point.
|
|
remarks: >-
|
|
Modifies this AABB so that it contains the given point. If the given point is already contained by this AABB,
|
|
|
|
then this AABB doesn't change.
|
|
example: []
|
|
syntax:
|
|
content: public void Encapsulate(float3 point)
|
|
parameters:
|
|
- id: point
|
|
type: Misaki.HighPerformance.Mathematics.float3
|
|
description: Point to encapsulate.
|
|
content.vb: Public Sub Encapsulate(point As float3)
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.Encapsulate*
|
|
seealso:
|
|
- linkId: Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains(Misaki.HighPerformance.Mathematics.float3)
|
|
commentId: M:Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains(Misaki.HighPerformance.Mathematics.float3)
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Equals(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
commentId: M:Misaki.HighPerformance.Mathematics.Geometry.AABB.Equals(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
id: Equals(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Equals(AABB)
|
|
nameWithType: AABB.Equals(AABB)
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Equals(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: Equals
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 209
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
summary: Indicates whether the current object is equal to another object of the same type.
|
|
example: []
|
|
syntax:
|
|
content: public readonly bool Equals(AABB other)
|
|
parameters:
|
|
- id: other
|
|
type: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
description: An object to compare with this object.
|
|
return:
|
|
type: System.Boolean
|
|
description: <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">true</a> if the current object is equal to the <code class="paramref">other</code> parameter; otherwise, <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a>.
|
|
content.vb: Public Function Equals(other As AABB) As Boolean
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.Equals*
|
|
implements:
|
|
- System.IEquatable{Misaki.HighPerformance.Mathematics.Geometry.AABB}.Equals(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Equals(System.Object)
|
|
commentId: M:Misaki.HighPerformance.Mathematics.Geometry.AABB.Equals(System.Object)
|
|
id: Equals(System.Object)
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Equals(object?)
|
|
nameWithType: AABB.Equals(object?)
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Equals(object?)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: Equals
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 215
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
summary: Indicates whether this instance and a specified object are equal.
|
|
example: []
|
|
syntax:
|
|
content: public override bool Equals(object? obj)
|
|
parameters:
|
|
- id: obj
|
|
type: System.Object
|
|
description: The object to compare with the current instance.
|
|
return:
|
|
type: System.Boolean
|
|
description: <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">true</a> if <code class="paramref">obj</code> and this instance are the same type and represent the same value; otherwise, <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a>.
|
|
content.vb: Public Overrides Function Equals(obj As Object) As Boolean
|
|
overridden: System.ValueType.Equals(System.Object)
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.Equals*
|
|
nameWithType.vb: AABB.Equals(Object)
|
|
fullName.vb: Misaki.HighPerformance.Mathematics.Geometry.AABB.Equals(Object)
|
|
name.vb: Equals(Object)
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.op_Equality(Misaki.HighPerformance.Mathematics.Geometry.AABB,Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
commentId: M:Misaki.HighPerformance.Mathematics.Geometry.AABB.op_Equality(Misaki.HighPerformance.Mathematics.Geometry.AABB,Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
id: op_Equality(Misaki.HighPerformance.Mathematics.Geometry.AABB,Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: operator ==(AABB, AABB)
|
|
nameWithType: AABB.operator ==(AABB, AABB)
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.operator ==(Misaki.HighPerformance.Mathematics.Geometry.AABB, Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
type: Operator
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: op_Equality
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 224
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
syntax:
|
|
content: public static bool operator ==(AABB left, AABB right)
|
|
parameters:
|
|
- id: left
|
|
type: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
- id: right
|
|
type: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
return:
|
|
type: System.Boolean
|
|
content.vb: Public Shared Operator =(left As AABB, right As AABB) As Boolean
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.op_Equality*
|
|
nameWithType.vb: AABB.=(AABB, AABB)
|
|
fullName.vb: Misaki.HighPerformance.Mathematics.Geometry.AABB.=(Misaki.HighPerformance.Mathematics.Geometry.AABB, Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
name.vb: =(AABB, AABB)
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.op_Inequality(Misaki.HighPerformance.Mathematics.Geometry.AABB,Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
commentId: M:Misaki.HighPerformance.Mathematics.Geometry.AABB.op_Inequality(Misaki.HighPerformance.Mathematics.Geometry.AABB,Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
id: op_Inequality(Misaki.HighPerformance.Mathematics.Geometry.AABB,Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: operator !=(AABB, AABB)
|
|
nameWithType: AABB.operator !=(AABB, AABB)
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.operator !=(Misaki.HighPerformance.Mathematics.Geometry.AABB, Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
type: Operator
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: op_Inequality
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 229
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
syntax:
|
|
content: public static bool operator !=(AABB left, AABB right)
|
|
parameters:
|
|
- id: left
|
|
type: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
- id: right
|
|
type: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
return:
|
|
type: System.Boolean
|
|
content.vb: Public Shared Operator <>(left As AABB, right As AABB) As Boolean
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.op_Inequality*
|
|
nameWithType.vb: AABB.<>(AABB, AABB)
|
|
fullName.vb: Misaki.HighPerformance.Mathematics.Geometry.AABB.<>(Misaki.HighPerformance.Mathematics.Geometry.AABB, Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
name.vb: <>(AABB, AABB)
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.GetHashCode
|
|
commentId: M:Misaki.HighPerformance.Mathematics.Geometry.AABB.GetHashCode
|
|
id: GetHashCode
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetHashCode()
|
|
nameWithType: AABB.GetHashCode()
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.GetHashCode()
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: GetHashCode
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 234
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
summary: Returns the hash code for this instance.
|
|
example: []
|
|
syntax:
|
|
content: public override readonly int GetHashCode()
|
|
return:
|
|
type: System.Int32
|
|
description: A 32-bit signed integer that is the hash code for this instance.
|
|
content.vb: Public Overrides Function GetHashCode() As Integer
|
|
overridden: System.ValueType.GetHashCode
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.GetHashCode*
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.ToString
|
|
commentId: M:Misaki.HighPerformance.Mathematics.Geometry.AABB.ToString
|
|
id: ToString
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: ToString()
|
|
nameWithType: AABB.ToString()
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.ToString()
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
branch: main
|
|
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
|
|
id: ToString
|
|
path: src/Misaki.HighPerformance.Mathematics/Geometry/AABB.cs
|
|
startLine: 239
|
|
assemblies:
|
|
- Misaki.HighPerformance.Mathematics
|
|
namespace: Misaki.HighPerformance.Mathematics.Geometry
|
|
summary: Returns the fully qualified type name of this instance.
|
|
example: []
|
|
syntax:
|
|
content: public override readonly string ToString()
|
|
return:
|
|
type: System.String
|
|
description: The fully qualified type name.
|
|
content.vb: Public Overrides Function ToString() As String
|
|
overridden: System.ValueType.ToString
|
|
overload: Misaki.HighPerformance.Mathematics.Geometry.AABB.ToString*
|
|
references:
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry
|
|
commentId: N:Misaki.HighPerformance.Mathematics.Geometry
|
|
href: Misaki.html
|
|
name: Misaki.HighPerformance.Mathematics.Geometry
|
|
nameWithType: Misaki.HighPerformance.Mathematics.Geometry
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry
|
|
spec.csharp:
|
|
- uid: Misaki
|
|
name: Misaki
|
|
href: Misaki.html
|
|
- name: .
|
|
- uid: Misaki.HighPerformance
|
|
name: HighPerformance
|
|
href: Misaki.HighPerformance.html
|
|
- name: .
|
|
- uid: Misaki.HighPerformance.Mathematics
|
|
name: Mathematics
|
|
href: Misaki.HighPerformance.Mathematics.html
|
|
- name: .
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry
|
|
name: Geometry
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.html
|
|
spec.vb:
|
|
- uid: Misaki
|
|
name: Misaki
|
|
href: Misaki.html
|
|
- name: .
|
|
- uid: Misaki.HighPerformance
|
|
name: HighPerformance
|
|
href: Misaki.HighPerformance.html
|
|
- name: .
|
|
- uid: Misaki.HighPerformance.Mathematics
|
|
name: Mathematics
|
|
href: Misaki.HighPerformance.Mathematics.html
|
|
- name: .
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry
|
|
name: Geometry
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.html
|
|
- uid: System.IEquatable{Misaki.HighPerformance.Mathematics.Geometry.AABB}
|
|
commentId: T:System.IEquatable{Misaki.HighPerformance.Mathematics.Geometry.AABB}
|
|
parent: System
|
|
definition: System.IEquatable`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1
|
|
name: IEquatable<AABB>
|
|
nameWithType: IEquatable<AABB>
|
|
fullName: System.IEquatable<Misaki.HighPerformance.Mathematics.Geometry.AABB>
|
|
nameWithType.vb: IEquatable(Of AABB)
|
|
fullName.vb: System.IEquatable(Of Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
name.vb: IEquatable(Of AABB)
|
|
spec.csharp:
|
|
- uid: System.IEquatable`1
|
|
name: IEquatable
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1
|
|
- name: <
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
name: AABB
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.IEquatable`1
|
|
name: IEquatable
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
name: AABB
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html
|
|
- name: )
|
|
- uid: System.Object.Equals(System.Object,System.Object)
|
|
commentId: M:System.Object.Equals(System.Object,System.Object)
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
|
|
name: Equals(object, object)
|
|
nameWithType: object.Equals(object, object)
|
|
fullName: object.Equals(object, object)
|
|
nameWithType.vb: Object.Equals(Object, Object)
|
|
fullName.vb: Object.Equals(Object, Object)
|
|
name.vb: Equals(Object, Object)
|
|
spec.csharp:
|
|
- uid: System.Object.Equals(System.Object,System.Object)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.Equals(System.Object,System.Object)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.Object.GetType
|
|
commentId: M:System.Object.GetType
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
|
|
name: GetType()
|
|
nameWithType: object.GetType()
|
|
fullName: object.GetType()
|
|
nameWithType.vb: Object.GetType()
|
|
fullName.vb: Object.GetType()
|
|
spec.csharp:
|
|
- uid: System.Object.GetType
|
|
name: GetType
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.GetType
|
|
name: GetType
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
|
|
- name: (
|
|
- name: )
|
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
|
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
|
|
name: ReferenceEquals(object, object)
|
|
nameWithType: object.ReferenceEquals(object, object)
|
|
fullName: object.ReferenceEquals(object, object)
|
|
nameWithType.vb: Object.ReferenceEquals(Object, Object)
|
|
fullName.vb: Object.ReferenceEquals(Object, Object)
|
|
name.vb: ReferenceEquals(Object, Object)
|
|
spec.csharp:
|
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
|
name: ReferenceEquals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
|
name: ReferenceEquals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.IEquatable`1
|
|
commentId: T:System.IEquatable`1
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1
|
|
name: IEquatable<T>
|
|
nameWithType: IEquatable<T>
|
|
fullName: System.IEquatable<T>
|
|
nameWithType.vb: IEquatable(Of T)
|
|
fullName.vb: System.IEquatable(Of T)
|
|
name.vb: IEquatable(Of T)
|
|
spec.csharp:
|
|
- uid: System.IEquatable`1
|
|
name: IEquatable
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1
|
|
- name: <
|
|
- name: T
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.IEquatable`1
|
|
name: IEquatable
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: T
|
|
- name: )
|
|
- uid: System
|
|
commentId: N:System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
name: System
|
|
nameWithType: System
|
|
fullName: System
|
|
- uid: System.Object
|
|
commentId: T:System.Object
|
|
parent: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
name: object
|
|
nameWithType: object
|
|
fullName: object
|
|
nameWithType.vb: Object
|
|
fullName.vb: Object
|
|
name.vb: Object
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.IsValid
|
|
commentId: P:Misaki.HighPerformance.Mathematics.Geometry.AABB.IsValid
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_IsValid
|
|
name: IsValid
|
|
nameWithType: AABB.IsValid
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.IsValid
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Min
|
|
commentId: P:Misaki.HighPerformance.Mathematics.Geometry.AABB.Min
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_Min
|
|
name: Min
|
|
nameWithType: AABB.Min
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Min
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Max
|
|
commentId: P:Misaki.HighPerformance.Mathematics.Geometry.AABB.Max
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_Max
|
|
name: Max
|
|
nameWithType: AABB.Max
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Max
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Min*
|
|
commentId: Overload:Misaki.HighPerformance.Mathematics.Geometry.AABB.Min
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_Min
|
|
name: Min
|
|
nameWithType: AABB.Min
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Min
|
|
- uid: Misaki.HighPerformance.Mathematics.float3
|
|
commentId: T:Misaki.HighPerformance.Mathematics.float3
|
|
parent: Misaki.HighPerformance.Mathematics
|
|
href: Misaki.HighPerformance.Mathematics.float3.html
|
|
name: float3
|
|
nameWithType: float3
|
|
fullName: Misaki.HighPerformance.Mathematics.float3
|
|
- uid: Misaki.HighPerformance.Mathematics
|
|
commentId: N:Misaki.HighPerformance.Mathematics
|
|
href: Misaki.html
|
|
name: Misaki.HighPerformance.Mathematics
|
|
nameWithType: Misaki.HighPerformance.Mathematics
|
|
fullName: Misaki.HighPerformance.Mathematics
|
|
spec.csharp:
|
|
- uid: Misaki
|
|
name: Misaki
|
|
href: Misaki.html
|
|
- name: .
|
|
- uid: Misaki.HighPerformance
|
|
name: HighPerformance
|
|
href: Misaki.HighPerformance.html
|
|
- name: .
|
|
- uid: Misaki.HighPerformance.Mathematics
|
|
name: Mathematics
|
|
href: Misaki.HighPerformance.Mathematics.html
|
|
spec.vb:
|
|
- uid: Misaki
|
|
name: Misaki
|
|
href: Misaki.html
|
|
- name: .
|
|
- uid: Misaki.HighPerformance
|
|
name: HighPerformance
|
|
href: Misaki.HighPerformance.html
|
|
- name: .
|
|
- uid: Misaki.HighPerformance.Mathematics
|
|
name: Mathematics
|
|
href: Misaki.HighPerformance.Mathematics.html
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Max*
|
|
commentId: Overload:Misaki.HighPerformance.Mathematics.Geometry.AABB.Max
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_Max
|
|
name: Max
|
|
nameWithType: AABB.Max
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Max
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndExtents(Misaki.HighPerformance.Mathematics.float3,Misaki.HighPerformance.Mathematics.float3)
|
|
commentId: M:Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndExtents(Misaki.HighPerformance.Mathematics.float3,Misaki.HighPerformance.Mathematics.float3)
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_CreateFromCenterAndExtents_Misaki_HighPerformance_Mathematics_float3_Misaki_HighPerformance_Mathematics_float3_
|
|
name: CreateFromCenterAndExtents(float3, float3)
|
|
nameWithType: AABB.CreateFromCenterAndExtents(float3, float3)
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndExtents(Misaki.HighPerformance.Mathematics.float3, Misaki.HighPerformance.Mathematics.float3)
|
|
spec.csharp:
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndExtents(Misaki.HighPerformance.Mathematics.float3,Misaki.HighPerformance.Mathematics.float3)
|
|
name: CreateFromCenterAndExtents
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_CreateFromCenterAndExtents_Misaki_HighPerformance_Mathematics_float3_Misaki_HighPerformance_Mathematics_float3_
|
|
- name: (
|
|
- uid: Misaki.HighPerformance.Mathematics.float3
|
|
name: float3
|
|
href: Misaki.HighPerformance.Mathematics.float3.html
|
|
- name: ','
|
|
- name: " "
|
|
- uid: Misaki.HighPerformance.Mathematics.float3
|
|
name: float3
|
|
href: Misaki.HighPerformance.Mathematics.float3.html
|
|
- name: )
|
|
spec.vb:
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndExtents(Misaki.HighPerformance.Mathematics.float3,Misaki.HighPerformance.Mathematics.float3)
|
|
name: CreateFromCenterAndExtents
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_CreateFromCenterAndExtents_Misaki_HighPerformance_Mathematics_float3_Misaki_HighPerformance_Mathematics_float3_
|
|
- name: (
|
|
- uid: Misaki.HighPerformance.Mathematics.float3
|
|
name: float3
|
|
href: Misaki.HighPerformance.Mathematics.float3.html
|
|
- name: ','
|
|
- name: " "
|
|
- uid: Misaki.HighPerformance.Mathematics.float3
|
|
name: float3
|
|
href: Misaki.HighPerformance.Mathematics.float3.html
|
|
- name: )
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndHalfExtents(Misaki.HighPerformance.Mathematics.float3,Misaki.HighPerformance.Mathematics.float3)
|
|
commentId: M:Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndHalfExtents(Misaki.HighPerformance.Mathematics.float3,Misaki.HighPerformance.Mathematics.float3)
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_CreateFromCenterAndHalfExtents_Misaki_HighPerformance_Mathematics_float3_Misaki_HighPerformance_Mathematics_float3_
|
|
name: CreateFromCenterAndHalfExtents(float3, float3)
|
|
nameWithType: AABB.CreateFromCenterAndHalfExtents(float3, float3)
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndHalfExtents(Misaki.HighPerformance.Mathematics.float3, Misaki.HighPerformance.Mathematics.float3)
|
|
spec.csharp:
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndHalfExtents(Misaki.HighPerformance.Mathematics.float3,Misaki.HighPerformance.Mathematics.float3)
|
|
name: CreateFromCenterAndHalfExtents
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_CreateFromCenterAndHalfExtents_Misaki_HighPerformance_Mathematics_float3_Misaki_HighPerformance_Mathematics_float3_
|
|
- name: (
|
|
- uid: Misaki.HighPerformance.Mathematics.float3
|
|
name: float3
|
|
href: Misaki.HighPerformance.Mathematics.float3.html
|
|
- name: ','
|
|
- name: " "
|
|
- uid: Misaki.HighPerformance.Mathematics.float3
|
|
name: float3
|
|
href: Misaki.HighPerformance.Mathematics.float3.html
|
|
- name: )
|
|
spec.vb:
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndHalfExtents(Misaki.HighPerformance.Mathematics.float3,Misaki.HighPerformance.Mathematics.float3)
|
|
name: CreateFromCenterAndHalfExtents
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_CreateFromCenterAndHalfExtents_Misaki_HighPerformance_Mathematics_float3_Misaki_HighPerformance_Mathematics_float3_
|
|
- name: (
|
|
- uid: Misaki.HighPerformance.Mathematics.float3
|
|
name: float3
|
|
href: Misaki.HighPerformance.Mathematics.float3.html
|
|
- name: ','
|
|
- name: " "
|
|
- uid: Misaki.HighPerformance.Mathematics.float3
|
|
name: float3
|
|
href: Misaki.HighPerformance.Mathematics.float3.html
|
|
- name: )
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.#ctor*
|
|
commentId: Overload:Misaki.HighPerformance.Mathematics.Geometry.AABB.#ctor
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB__ctor_Misaki_HighPerformance_Mathematics_float3_Misaki_HighPerformance_Mathematics_float3_
|
|
name: AABB
|
|
nameWithType: AABB.AABB
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.AABB
|
|
nameWithType.vb: AABB.New
|
|
fullName.vb: Misaki.HighPerformance.Mathematics.Geometry.AABB.New
|
|
name.vb: New
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndExtents*
|
|
commentId: Overload:Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndExtents
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_CreateFromCenterAndExtents_Misaki_HighPerformance_Mathematics_float3_Misaki_HighPerformance_Mathematics_float3_
|
|
name: CreateFromCenterAndExtents
|
|
nameWithType: AABB.CreateFromCenterAndExtents
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndExtents
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
commentId: T:Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
parent: Misaki.HighPerformance.Mathematics.Geometry
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html
|
|
name: AABB
|
|
nameWithType: AABB
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndHalfExtents*
|
|
commentId: Overload:Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndHalfExtents
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_CreateFromCenterAndHalfExtents_Misaki_HighPerformance_Mathematics_float3_Misaki_HighPerformance_Mathematics_float3_
|
|
name: CreateFromCenterAndHalfExtents
|
|
nameWithType: AABB.CreateFromCenterAndHalfExtents
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.CreateFromCenterAndHalfExtents
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Zero*
|
|
commentId: Overload:Misaki.HighPerformance.Mathematics.Geometry.AABB.Zero
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_Zero
|
|
name: Zero
|
|
nameWithType: AABB.Zero
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Zero
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Extents*
|
|
commentId: Overload:Misaki.HighPerformance.Mathematics.Geometry.AABB.Extents
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_Extents
|
|
name: Extents
|
|
nameWithType: AABB.Extents
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Extents
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.HalfExtents*
|
|
commentId: Overload:Misaki.HighPerformance.Mathematics.Geometry.AABB.HalfExtents
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_HalfExtents
|
|
name: HalfExtents
|
|
nameWithType: AABB.HalfExtents
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.HalfExtents
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Center*
|
|
commentId: Overload:Misaki.HighPerformance.Mathematics.Geometry.AABB.Center
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_Center
|
|
name: Center
|
|
nameWithType: AABB.Center
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Center
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.IsValid*
|
|
commentId: Overload:Misaki.HighPerformance.Mathematics.Geometry.AABB.IsValid
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_IsValid
|
|
name: IsValid
|
|
nameWithType: AABB.IsValid
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.IsValid
|
|
- uid: System.Boolean
|
|
commentId: T:System.Boolean
|
|
parent: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
|
name: bool
|
|
nameWithType: bool
|
|
fullName: bool
|
|
nameWithType.vb: Boolean
|
|
fullName.vb: Boolean
|
|
name.vb: Boolean
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.SurfaceArea*
|
|
commentId: Overload:Misaki.HighPerformance.Mathematics.Geometry.AABB.SurfaceArea
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_SurfaceArea
|
|
name: SurfaceArea
|
|
nameWithType: AABB.SurfaceArea
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.SurfaceArea
|
|
- uid: System.Single
|
|
commentId: T:System.Single
|
|
parent: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.single
|
|
name: float
|
|
nameWithType: float
|
|
fullName: float
|
|
nameWithType.vb: Single
|
|
fullName.vb: Single
|
|
name.vb: Single
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains*
|
|
commentId: Overload:Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_Contains_Misaki_HighPerformance_Mathematics_float3_
|
|
name: Contains
|
|
nameWithType: AABB.Contains
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Overlaps*
|
|
commentId: Overload:Misaki.HighPerformance.Mathematics.Geometry.AABB.Overlaps
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_Overlaps_Misaki_HighPerformance_Mathematics_Geometry_AABB_
|
|
name: Overlaps
|
|
nameWithType: AABB.Overlaps
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Overlaps
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Expand*
|
|
commentId: Overload:Misaki.HighPerformance.Mathematics.Geometry.AABB.Expand
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_Expand_System_Single_
|
|
name: Expand
|
|
nameWithType: AABB.Expand
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Expand
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
commentId: M:Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_Contains_Misaki_HighPerformance_Mathematics_Geometry_AABB_
|
|
name: Contains(AABB)
|
|
nameWithType: AABB.Contains(AABB)
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
spec.csharp:
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
name: Contains
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_Contains_Misaki_HighPerformance_Mathematics_Geometry_AABB_
|
|
- name: (
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
name: AABB
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html
|
|
- name: )
|
|
spec.vb:
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
name: Contains
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_Contains_Misaki_HighPerformance_Mathematics_Geometry_AABB_
|
|
- name: (
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
name: AABB
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html
|
|
- name: )
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Encapsulate*
|
|
commentId: Overload:Misaki.HighPerformance.Mathematics.Geometry.AABB.Encapsulate
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_Encapsulate_Misaki_HighPerformance_Mathematics_Geometry_AABB_
|
|
name: Encapsulate
|
|
nameWithType: AABB.Encapsulate
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Encapsulate
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains(Misaki.HighPerformance.Mathematics.float3)
|
|
commentId: M:Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains(Misaki.HighPerformance.Mathematics.float3)
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_Contains_Misaki_HighPerformance_Mathematics_float3_
|
|
name: Contains(float3)
|
|
nameWithType: AABB.Contains(float3)
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains(Misaki.HighPerformance.Mathematics.float3)
|
|
spec.csharp:
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains(Misaki.HighPerformance.Mathematics.float3)
|
|
name: Contains
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_Contains_Misaki_HighPerformance_Mathematics_float3_
|
|
- name: (
|
|
- uid: Misaki.HighPerformance.Mathematics.float3
|
|
name: float3
|
|
href: Misaki.HighPerformance.Mathematics.float3.html
|
|
- name: )
|
|
spec.vb:
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Contains(Misaki.HighPerformance.Mathematics.float3)
|
|
name: Contains
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_Contains_Misaki_HighPerformance_Mathematics_float3_
|
|
- name: (
|
|
- uid: Misaki.HighPerformance.Mathematics.float3
|
|
name: float3
|
|
href: Misaki.HighPerformance.Mathematics.float3.html
|
|
- name: )
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.Equals*
|
|
commentId: Overload:Misaki.HighPerformance.Mathematics.Geometry.AABB.Equals
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_Equals_Misaki_HighPerformance_Mathematics_Geometry_AABB_
|
|
name: Equals
|
|
nameWithType: AABB.Equals
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.Equals
|
|
- uid: System.IEquatable{Misaki.HighPerformance.Mathematics.Geometry.AABB}.Equals(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
commentId: M:System.IEquatable{Misaki.HighPerformance.Mathematics.Geometry.AABB}.Equals(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
parent: System.IEquatable{Misaki.HighPerformance.Mathematics.Geometry.AABB}
|
|
definition: System.IEquatable`1.Equals(`0)
|
|
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals
|
|
name: Equals(AABB)
|
|
nameWithType: IEquatable<AABB>.Equals(AABB)
|
|
fullName: System.IEquatable<Misaki.HighPerformance.Mathematics.Geometry.AABB>.Equals(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
nameWithType.vb: IEquatable(Of AABB).Equals(AABB)
|
|
fullName.vb: System.IEquatable(Of Misaki.HighPerformance.Mathematics.Geometry.AABB).Equals(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
spec.csharp:
|
|
- uid: System.IEquatable{Misaki.HighPerformance.Mathematics.Geometry.AABB}.Equals(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals
|
|
- name: (
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
name: AABB
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.IEquatable{Misaki.HighPerformance.Mathematics.Geometry.AABB}.Equals(Misaki.HighPerformance.Mathematics.Geometry.AABB)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals
|
|
- name: (
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB
|
|
name: AABB
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html
|
|
- name: )
|
|
- uid: System.IEquatable`1.Equals(`0)
|
|
commentId: M:System.IEquatable`1.Equals(`0)
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals
|
|
name: Equals(T)
|
|
nameWithType: IEquatable<T>.Equals(T)
|
|
fullName: System.IEquatable<T>.Equals(T)
|
|
nameWithType.vb: IEquatable(Of T).Equals(T)
|
|
fullName.vb: System.IEquatable(Of T).Equals(T)
|
|
spec.csharp:
|
|
- uid: System.IEquatable`1.Equals(`0)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals
|
|
- name: (
|
|
- name: T
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.IEquatable`1.Equals(`0)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals
|
|
- name: (
|
|
- name: T
|
|
- name: )
|
|
- uid: System.ValueType.Equals(System.Object)
|
|
commentId: M:System.ValueType.Equals(System.Object)
|
|
parent: System.ValueType
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals
|
|
name: Equals(object)
|
|
nameWithType: ValueType.Equals(object)
|
|
fullName: System.ValueType.Equals(object)
|
|
nameWithType.vb: ValueType.Equals(Object)
|
|
fullName.vb: System.ValueType.Equals(Object)
|
|
name.vb: Equals(Object)
|
|
spec.csharp:
|
|
- uid: System.ValueType.Equals(System.Object)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.ValueType.Equals(System.Object)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.ValueType
|
|
commentId: T:System.ValueType
|
|
parent: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.valuetype
|
|
name: ValueType
|
|
nameWithType: ValueType
|
|
fullName: System.ValueType
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.op_Equality*
|
|
commentId: Overload:Misaki.HighPerformance.Mathematics.Geometry.AABB.op_Equality
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_op_Equality_Misaki_HighPerformance_Mathematics_Geometry_AABB_Misaki_HighPerformance_Mathematics_Geometry_AABB_
|
|
name: operator ==
|
|
nameWithType: AABB.operator ==
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.operator ==
|
|
nameWithType.vb: AABB.=
|
|
fullName.vb: Misaki.HighPerformance.Mathematics.Geometry.AABB.=
|
|
name.vb: =
|
|
spec.csharp:
|
|
- name: operator
|
|
- name: " "
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.op_Equality*
|
|
name: ==
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_op_Equality_Misaki_HighPerformance_Mathematics_Geometry_AABB_Misaki_HighPerformance_Mathematics_Geometry_AABB_
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.op_Inequality*
|
|
commentId: Overload:Misaki.HighPerformance.Mathematics.Geometry.AABB.op_Inequality
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_op_Inequality_Misaki_HighPerformance_Mathematics_Geometry_AABB_Misaki_HighPerformance_Mathematics_Geometry_AABB_
|
|
name: operator !=
|
|
nameWithType: AABB.operator !=
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.operator !=
|
|
nameWithType.vb: AABB.<>
|
|
fullName.vb: Misaki.HighPerformance.Mathematics.Geometry.AABB.<>
|
|
name.vb: <>
|
|
spec.csharp:
|
|
- name: operator
|
|
- name: " "
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.op_Inequality*
|
|
name: '!='
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_op_Inequality_Misaki_HighPerformance_Mathematics_Geometry_AABB_Misaki_HighPerformance_Mathematics_Geometry_AABB_
|
|
- uid: System.ValueType.GetHashCode
|
|
commentId: M:System.ValueType.GetHashCode
|
|
parent: System.ValueType
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode
|
|
name: GetHashCode()
|
|
nameWithType: ValueType.GetHashCode()
|
|
fullName: System.ValueType.GetHashCode()
|
|
spec.csharp:
|
|
- uid: System.ValueType.GetHashCode
|
|
name: GetHashCode
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.ValueType.GetHashCode
|
|
name: GetHashCode
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode
|
|
- name: (
|
|
- name: )
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.GetHashCode*
|
|
commentId: Overload:Misaki.HighPerformance.Mathematics.Geometry.AABB.GetHashCode
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_GetHashCode
|
|
name: GetHashCode
|
|
nameWithType: AABB.GetHashCode
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.GetHashCode
|
|
- uid: System.Int32
|
|
commentId: T:System.Int32
|
|
parent: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.int32
|
|
name: int
|
|
nameWithType: int
|
|
fullName: int
|
|
nameWithType.vb: Integer
|
|
fullName.vb: Integer
|
|
name.vb: Integer
|
|
- uid: System.ValueType.ToString
|
|
commentId: M:System.ValueType.ToString
|
|
parent: System.ValueType
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring
|
|
name: ToString()
|
|
nameWithType: ValueType.ToString()
|
|
fullName: System.ValueType.ToString()
|
|
spec.csharp:
|
|
- uid: System.ValueType.ToString
|
|
name: ToString
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.ValueType.ToString
|
|
name: ToString
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring
|
|
- name: (
|
|
- name: )
|
|
- uid: Misaki.HighPerformance.Mathematics.Geometry.AABB.ToString*
|
|
commentId: Overload:Misaki.HighPerformance.Mathematics.Geometry.AABB.ToString
|
|
href: Misaki.HighPerformance.Mathematics.Geometry.AABB.html#Misaki_HighPerformance_Mathematics_Geometry_AABB_ToString
|
|
name: ToString
|
|
nameWithType: AABB.ToString
|
|
fullName: Misaki.HighPerformance.Mathematics.Geometry.AABB.ToString
|
|
- uid: System.String
|
|
commentId: T:System.String
|
|
parent: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
name: string
|
|
nameWithType: string
|
|
fullName: string
|
|
nameWithType.vb: String
|
|
fullName.vb: String
|
|
name.vb: String
|