1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-09-20 06:05:46 +02:00
MLEM/Docs/api/MLEM.Pathfinding.AStar3.yml

1530 lines
67 KiB
YAML
Generated

### YamlMime:ManagedReference
items:
- uid: MLEM.Pathfinding.AStar3
commentId: T:MLEM.Pathfinding.AStar3
id: AStar3
parent: MLEM.Pathfinding
children:
- MLEM.Pathfinding.AStar3.#ctor(MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost,System.Boolean,System.Single,System.Int32,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors)
- MLEM.Pathfinding.AStar3.CollectNeighbors(Microsoft.Xna.Framework.Vector3,System.Collections.Generic.ISet{Microsoft.Xna.Framework.Vector3})
- MLEM.Pathfinding.AStar3.GetHeuristicDistance(Microsoft.Xna.Framework.Vector3,Microsoft.Xna.Framework.Vector3)
langs:
- csharp
- vb
name: AStar3
nameWithType: AStar3
fullName: MLEM.Pathfinding.AStar3
type: Class
source:
remote:
path: MLEM/Pathfinding/AStar3.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: AStar3
path: ../MLEM/Pathfinding/AStar3.cs
startLine: 8
assemblies:
- MLEM
namespace: MLEM.Pathfinding
summary: A 3-dimensional implementation of <xref href="MLEM.Pathfinding.AStar%601" data-throw-if-not-resolved="false"></xref> that uses <xref href="Microsoft.Xna.Framework.Vector3" data-throw-if-not-resolved="false"></xref> for positions, and the manhattan distance as its heuristic.
example: []
syntax:
content: 'public class AStar3 : AStar<Vector3>'
content.vb: Public Class AStar3 Inherits AStar(Of Vector3)
inheritance:
- System.Object
- MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}
inheritedMembers:
- MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.DefaultCostFunction
- MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.DefaultCost
- MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.DefaultMaxTries
- MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.DefaultAdditionalNeighbors
- MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.LastTriesNeeded
- MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.LastTimeNeeded
- MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.FindPath(Microsoft.Xna.Framework.Vector3,Microsoft.Xna.Framework.Vector3,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors)
- MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.TryFindPath(Microsoft.Xna.Framework.Vector3,System.Collections.Generic.ICollection{Microsoft.Xna.Framework.Vector3},System.Collections.Generic.Stack{Microsoft.Xna.Framework.Vector3}@,System.Single@,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors)
- System.Object.ToString
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- uid: MLEM.Pathfinding.AStar3.#ctor(MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost,System.Boolean,System.Single,System.Int32,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors)
commentId: M:MLEM.Pathfinding.AStar3.#ctor(MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost,System.Boolean,System.Single,System.Int32,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors)
id: '#ctor(MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost,System.Boolean,System.Single,System.Int32,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors)'
parent: MLEM.Pathfinding.AStar3
langs:
- csharp
- vb
name: AStar3(GetCost, bool, float, int, CollectAdditionalNeighbors)
nameWithType: AStar3.AStar3(AStar<Vector3>.GetCost, bool, float, int, AStar<Vector3>.CollectAdditionalNeighbors)
fullName: MLEM.Pathfinding.AStar3.AStar3(MLEM.Pathfinding.AStar<Microsoft.Xna.Framework.Vector3>.GetCost, bool, float, int, MLEM.Pathfinding.AStar<Microsoft.Xna.Framework.Vector3>.CollectAdditionalNeighbors)
type: Constructor
source:
remote:
path: MLEM/Pathfinding/AStar3.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: .ctor
path: ../MLEM/Pathfinding/AStar3.cs
startLine: 13
assemblies:
- MLEM
namespace: MLEM.Pathfinding
example: []
syntax:
content: public AStar3(AStar<Vector3>.GetCost defaultCostFunction, bool includeDiagonals, float defaultCost = 1, int defaultMaxTries = 10000, AStar<Vector3>.CollectAdditionalNeighbors defaultAdditionalNeighbors = null)
parameters:
- id: defaultCostFunction
type: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost
- id: includeDiagonals
type: System.Boolean
- id: defaultCost
type: System.Single
- id: defaultMaxTries
type: System.Int32
- id: defaultAdditionalNeighbors
type: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors
content.vb: Public Sub New(defaultCostFunction As AStar(Of Vector3).GetCost, includeDiagonals As Boolean, defaultCost As Single = 1, defaultMaxTries As Integer = 10000, defaultAdditionalNeighbors As AStar(Of Vector3).CollectAdditionalNeighbors = Nothing)
overload: MLEM.Pathfinding.AStar3.#ctor*
nameWithType.vb: AStar3.New(AStar(Of Vector3).GetCost, Boolean, Single, Integer, AStar(Of Vector3).CollectAdditionalNeighbors)
fullName.vb: MLEM.Pathfinding.AStar3.New(MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Vector3).GetCost, Boolean, Single, Integer, MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Vector3).CollectAdditionalNeighbors)
name.vb: New(GetCost, Boolean, Single, Integer, CollectAdditionalNeighbors)
- uid: MLEM.Pathfinding.AStar3.GetHeuristicDistance(Microsoft.Xna.Framework.Vector3,Microsoft.Xna.Framework.Vector3)
commentId: M:MLEM.Pathfinding.AStar3.GetHeuristicDistance(Microsoft.Xna.Framework.Vector3,Microsoft.Xna.Framework.Vector3)
id: GetHeuristicDistance(Microsoft.Xna.Framework.Vector3,Microsoft.Xna.Framework.Vector3)
parent: MLEM.Pathfinding.AStar3
langs:
- csharp
- vb
name: GetHeuristicDistance(Vector3, Vector3)
nameWithType: AStar3.GetHeuristicDistance(Vector3, Vector3)
fullName: MLEM.Pathfinding.AStar3.GetHeuristicDistance(Microsoft.Xna.Framework.Vector3, Microsoft.Xna.Framework.Vector3)
type: Method
source:
remote:
path: MLEM/Pathfinding/AStar3.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: GetHeuristicDistance
path: ../MLEM/Pathfinding/AStar3.cs
startLine: 19
assemblies:
- MLEM
namespace: MLEM.Pathfinding
summary: >-
This method should implement a heuristic that determines the total distance between the given <code class="paramref">start</code> position and the given second position <code class="paramref">position</code>.
Note that this is multiplied with the <xref href="MLEM.Pathfinding.AStar%601.DefaultCost" data-throw-if-not-resolved="false"></xref> automatically, so no costs need to be considered in this method's return value.
example: []
syntax:
content: protected override float GetHeuristicDistance(Vector3 start, Vector3 position)
parameters:
- id: start
type: Microsoft.Xna.Framework.Vector3
description: The start position.
- id: position
type: Microsoft.Xna.Framework.Vector3
description: The position to get the distance to.
return:
type: System.Single
description: The total distance between the two positions.
content.vb: Protected Overrides Function GetHeuristicDistance(start As Vector3, position As Vector3) As Single
overridden: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetHeuristicDistance(Microsoft.Xna.Framework.Vector3,Microsoft.Xna.Framework.Vector3)
overload: MLEM.Pathfinding.AStar3.GetHeuristicDistance*
- uid: MLEM.Pathfinding.AStar3.CollectNeighbors(Microsoft.Xna.Framework.Vector3,System.Collections.Generic.ISet{Microsoft.Xna.Framework.Vector3})
commentId: M:MLEM.Pathfinding.AStar3.CollectNeighbors(Microsoft.Xna.Framework.Vector3,System.Collections.Generic.ISet{Microsoft.Xna.Framework.Vector3})
id: CollectNeighbors(Microsoft.Xna.Framework.Vector3,System.Collections.Generic.ISet{Microsoft.Xna.Framework.Vector3})
parent: MLEM.Pathfinding.AStar3
langs:
- csharp
- vb
name: CollectNeighbors(Vector3, ISet<Vector3>)
nameWithType: AStar3.CollectNeighbors(Vector3, ISet<Vector3>)
fullName: MLEM.Pathfinding.AStar3.CollectNeighbors(Microsoft.Xna.Framework.Vector3, System.Collections.Generic.ISet<Microsoft.Xna.Framework.Vector3>)
type: Method
source:
remote:
path: MLEM/Pathfinding/AStar3.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: CollectNeighbors
path: ../MLEM/Pathfinding/AStar3.cs
startLine: 24
assemblies:
- MLEM
namespace: MLEM.Pathfinding
summary: This method should populate a set of positions that are considered <code class="paramref">neighbors</code> to the given <code class="paramref">position</code>. For example, this method might return directly adjacent positions, diagonal positions, or faraway positions that can be teleported to.
example: []
syntax:
content: protected override void CollectNeighbors(Vector3 position, ISet<Vector3> neighbors)
parameters:
- id: position
type: Microsoft.Xna.Framework.Vector3
description: The position whose neighbors to return.
- id: neighbors
type: System.Collections.Generic.ISet{Microsoft.Xna.Framework.Vector3}
description: The set to populate with neighbors.
content.vb: Protected Overrides Sub CollectNeighbors(position As Vector3, neighbors As ISet(Of Vector3))
overridden: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectNeighbors(Microsoft.Xna.Framework.Vector3,System.Collections.Generic.ISet{Microsoft.Xna.Framework.Vector3})
overload: MLEM.Pathfinding.AStar3.CollectNeighbors*
nameWithType.vb: AStar3.CollectNeighbors(Vector3, ISet(Of Vector3))
fullName.vb: MLEM.Pathfinding.AStar3.CollectNeighbors(Microsoft.Xna.Framework.Vector3, System.Collections.Generic.ISet(Of Microsoft.Xna.Framework.Vector3))
name.vb: CollectNeighbors(Vector3, ISet(Of Vector3))
references:
- uid: MLEM.Pathfinding.AStar`1
commentId: T:MLEM.Pathfinding.AStar`1
href: MLEM.Pathfinding.AStar-1.html
name: AStar<T>
nameWithType: AStar<T>
fullName: MLEM.Pathfinding.AStar<T>
nameWithType.vb: AStar(Of T)
fullName.vb: MLEM.Pathfinding.AStar(Of T)
name.vb: AStar(Of T)
spec.csharp:
- uid: MLEM.Pathfinding.AStar`1
name: AStar
href: MLEM.Pathfinding.AStar-1.html
- name: <
- name: T
- name: '>'
spec.vb:
- uid: MLEM.Pathfinding.AStar`1
name: AStar
href: MLEM.Pathfinding.AStar-1.html
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: Microsoft.Xna.Framework.Vector3
commentId: T:Microsoft.Xna.Framework.Vector3
parent: Microsoft.Xna.Framework
isExternal: true
name: Vector3
nameWithType: Vector3
fullName: Microsoft.Xna.Framework.Vector3
- uid: MLEM.Pathfinding
commentId: N:MLEM.Pathfinding
href: MLEM.html
name: MLEM.Pathfinding
nameWithType: MLEM.Pathfinding
fullName: MLEM.Pathfinding
spec.csharp:
- uid: MLEM
name: MLEM
href: MLEM.html
- name: .
- uid: MLEM.Pathfinding
name: Pathfinding
href: MLEM.Pathfinding.html
spec.vb:
- uid: MLEM
name: MLEM
href: MLEM.html
- name: .
- uid: MLEM.Pathfinding
name: Pathfinding
href: MLEM.Pathfinding.html
- 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: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}
commentId: T:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}
parent: MLEM.Pathfinding
definition: MLEM.Pathfinding.AStar`1
href: MLEM.Pathfinding.AStar-1.html
name: AStar<Vector3>
nameWithType: AStar<Vector3>
fullName: MLEM.Pathfinding.AStar<Microsoft.Xna.Framework.Vector3>
nameWithType.vb: AStar(Of Vector3)
fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Vector3)
name.vb: AStar(Of Vector3)
spec.csharp:
- uid: MLEM.Pathfinding.AStar`1
name: AStar
href: MLEM.Pathfinding.AStar-1.html
- name: <
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: '>'
spec.vb:
- uid: MLEM.Pathfinding.AStar`1
name: AStar
href: MLEM.Pathfinding.AStar-1.html
- name: (
- name: Of
- name: " "
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: )
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.DefaultCostFunction
commentId: F:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.DefaultCostFunction
parent: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}
definition: MLEM.Pathfinding.AStar`1.DefaultCostFunction
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_DefaultCostFunction
name: DefaultCostFunction
nameWithType: AStar<Vector3>.DefaultCostFunction
fullName: MLEM.Pathfinding.AStar<Microsoft.Xna.Framework.Vector3>.DefaultCostFunction
nameWithType.vb: AStar(Of Vector3).DefaultCostFunction
fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Vector3).DefaultCostFunction
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.DefaultCost
commentId: F:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.DefaultCost
parent: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}
definition: MLEM.Pathfinding.AStar`1.DefaultCost
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_DefaultCost
name: DefaultCost
nameWithType: AStar<Vector3>.DefaultCost
fullName: MLEM.Pathfinding.AStar<Microsoft.Xna.Framework.Vector3>.DefaultCost
nameWithType.vb: AStar(Of Vector3).DefaultCost
fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Vector3).DefaultCost
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.DefaultMaxTries
commentId: F:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.DefaultMaxTries
parent: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}
definition: MLEM.Pathfinding.AStar`1.DefaultMaxTries
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_DefaultMaxTries
name: DefaultMaxTries
nameWithType: AStar<Vector3>.DefaultMaxTries
fullName: MLEM.Pathfinding.AStar<Microsoft.Xna.Framework.Vector3>.DefaultMaxTries
nameWithType.vb: AStar(Of Vector3).DefaultMaxTries
fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Vector3).DefaultMaxTries
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.DefaultAdditionalNeighbors
commentId: F:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.DefaultAdditionalNeighbors
parent: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}
definition: MLEM.Pathfinding.AStar`1.DefaultAdditionalNeighbors
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_DefaultAdditionalNeighbors
name: DefaultAdditionalNeighbors
nameWithType: AStar<Vector3>.DefaultAdditionalNeighbors
fullName: MLEM.Pathfinding.AStar<Microsoft.Xna.Framework.Vector3>.DefaultAdditionalNeighbors
nameWithType.vb: AStar(Of Vector3).DefaultAdditionalNeighbors
fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Vector3).DefaultAdditionalNeighbors
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.LastTriesNeeded
commentId: P:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.LastTriesNeeded
parent: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}
definition: MLEM.Pathfinding.AStar`1.LastTriesNeeded
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_LastTriesNeeded
name: LastTriesNeeded
nameWithType: AStar<Vector3>.LastTriesNeeded
fullName: MLEM.Pathfinding.AStar<Microsoft.Xna.Framework.Vector3>.LastTriesNeeded
nameWithType.vb: AStar(Of Vector3).LastTriesNeeded
fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Vector3).LastTriesNeeded
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.LastTimeNeeded
commentId: P:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.LastTimeNeeded
parent: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}
definition: MLEM.Pathfinding.AStar`1.LastTimeNeeded
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_LastTimeNeeded
name: LastTimeNeeded
nameWithType: AStar<Vector3>.LastTimeNeeded
fullName: MLEM.Pathfinding.AStar<Microsoft.Xna.Framework.Vector3>.LastTimeNeeded
nameWithType.vb: AStar(Of Vector3).LastTimeNeeded
fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Vector3).LastTimeNeeded
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.FindPath(Microsoft.Xna.Framework.Vector3,Microsoft.Xna.Framework.Vector3,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors)
commentId: M:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.FindPath(Microsoft.Xna.Framework.Vector3,Microsoft.Xna.Framework.Vector3,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors)
parent: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}
definition: MLEM.Pathfinding.AStar`1.FindPath(`0,`0,MLEM.Pathfinding.AStar{`0}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{`0}.CollectAdditionalNeighbors)
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_FindPath__0__0_MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_
name: FindPath(Vector3, Vector3, GetCost, float?, int?, CollectAdditionalNeighbors)
nameWithType: AStar<Vector3>.FindPath(Vector3, Vector3, AStar<Vector3>.GetCost, float?, int?, AStar<Vector3>.CollectAdditionalNeighbors)
fullName: MLEM.Pathfinding.AStar<Microsoft.Xna.Framework.Vector3>.FindPath(Microsoft.Xna.Framework.Vector3, Microsoft.Xna.Framework.Vector3, MLEM.Pathfinding.AStar<Microsoft.Xna.Framework.Vector3>.GetCost, float?, int?, MLEM.Pathfinding.AStar<Microsoft.Xna.Framework.Vector3>.CollectAdditionalNeighbors)
nameWithType.vb: AStar(Of Vector3).FindPath(Vector3, Vector3, AStar(Of Vector3).GetCost, Single?, Integer?, AStar(Of Vector3).CollectAdditionalNeighbors)
fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Vector3).FindPath(Microsoft.Xna.Framework.Vector3, Microsoft.Xna.Framework.Vector3, MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Vector3).GetCost, Single?, Integer?, MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Vector3).CollectAdditionalNeighbors)
name.vb: FindPath(Vector3, Vector3, GetCost, Single?, Integer?, CollectAdditionalNeighbors)
spec.csharp:
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.FindPath(Microsoft.Xna.Framework.Vector3,Microsoft.Xna.Framework.Vector3,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors)
name: FindPath
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_FindPath__0__0_MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_
- name: (
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: ','
- name: " "
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: ','
- name: " "
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost
name: GetCost
href: MLEM.Pathfinding.AStar-1.GetCost.html
- name: ','
- name: " "
- uid: System.Single
name: float
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: '?'
- name: ','
- name: " "
- uid: System.Int32
name: int
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: '?'
- name: ','
- name: " "
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors
name: CollectAdditionalNeighbors
href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html
- name: )
spec.vb:
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.FindPath(Microsoft.Xna.Framework.Vector3,Microsoft.Xna.Framework.Vector3,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors)
name: FindPath
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_FindPath__0__0_MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_
- name: (
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: ','
- name: " "
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: ','
- name: " "
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost
name: GetCost
href: MLEM.Pathfinding.AStar-1.GetCost.html
- name: ','
- name: " "
- uid: System.Single
name: Single
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: '?'
- name: ','
- name: " "
- uid: System.Int32
name: Integer
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: '?'
- name: ','
- name: " "
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors
name: CollectAdditionalNeighbors
href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html
- name: )
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.TryFindPath(Microsoft.Xna.Framework.Vector3,System.Collections.Generic.ICollection{Microsoft.Xna.Framework.Vector3},System.Collections.Generic.Stack{Microsoft.Xna.Framework.Vector3}@,System.Single@,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors)
commentId: M:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.TryFindPath(Microsoft.Xna.Framework.Vector3,System.Collections.Generic.ICollection{Microsoft.Xna.Framework.Vector3},System.Collections.Generic.Stack{Microsoft.Xna.Framework.Vector3}@,System.Single@,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors)
parent: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}
definition: MLEM.Pathfinding.AStar`1.TryFindPath(`0,System.Collections.Generic.ICollection{`0},System.Collections.Generic.Stack{`0}@,System.Single@,MLEM.Pathfinding.AStar{`0}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{`0}.CollectAdditionalNeighbors)
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_TryFindPath__0_System_Collections_Generic_ICollection__0__System_Collections_Generic_Stack__0___System_Single__MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_
name: TryFindPath(Vector3, ICollection<Vector3>, out Stack<Vector3>, out float, GetCost, float?, int?, CollectAdditionalNeighbors)
nameWithType: AStar<Vector3>.TryFindPath(Vector3, ICollection<Vector3>, out Stack<Vector3>, out float, AStar<Vector3>.GetCost, float?, int?, AStar<Vector3>.CollectAdditionalNeighbors)
fullName: MLEM.Pathfinding.AStar<Microsoft.Xna.Framework.Vector3>.TryFindPath(Microsoft.Xna.Framework.Vector3, System.Collections.Generic.ICollection<Microsoft.Xna.Framework.Vector3>, out System.Collections.Generic.Stack<Microsoft.Xna.Framework.Vector3>, out float, MLEM.Pathfinding.AStar<Microsoft.Xna.Framework.Vector3>.GetCost, float?, int?, MLEM.Pathfinding.AStar<Microsoft.Xna.Framework.Vector3>.CollectAdditionalNeighbors)
nameWithType.vb: AStar(Of Vector3).TryFindPath(Vector3, ICollection(Of Vector3), Stack(Of Vector3), Single, AStar(Of Vector3).GetCost, Single?, Integer?, AStar(Of Vector3).CollectAdditionalNeighbors)
fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Vector3).TryFindPath(Microsoft.Xna.Framework.Vector3, System.Collections.Generic.ICollection(Of Microsoft.Xna.Framework.Vector3), System.Collections.Generic.Stack(Of Microsoft.Xna.Framework.Vector3), Single, MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Vector3).GetCost, Single?, Integer?, MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Vector3).CollectAdditionalNeighbors)
name.vb: TryFindPath(Vector3, ICollection(Of Vector3), Stack(Of Vector3), Single, GetCost, Single?, Integer?, CollectAdditionalNeighbors)
spec.csharp:
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.TryFindPath(Microsoft.Xna.Framework.Vector3,System.Collections.Generic.ICollection{Microsoft.Xna.Framework.Vector3},System.Collections.Generic.Stack{Microsoft.Xna.Framework.Vector3}@,System.Single@,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors)
name: TryFindPath
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_TryFindPath__0_System_Collections_Generic_ICollection__0__System_Collections_Generic_Stack__0___System_Single__MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_
- name: (
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: ','
- name: " "
- uid: System.Collections.Generic.ICollection`1
name: ICollection
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name: <
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: '>'
- name: ','
- name: " "
- name: out
- name: " "
- uid: System.Collections.Generic.Stack`1
name: Stack
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.stack-1
- name: <
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: '>'
- name: ','
- name: " "
- name: out
- name: " "
- uid: System.Single
name: float
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: ','
- name: " "
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost
name: GetCost
href: MLEM.Pathfinding.AStar-1.GetCost.html
- name: ','
- name: " "
- uid: System.Single
name: float
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: '?'
- name: ','
- name: " "
- uid: System.Int32
name: int
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: '?'
- name: ','
- name: " "
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors
name: CollectAdditionalNeighbors
href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html
- name: )
spec.vb:
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.TryFindPath(Microsoft.Xna.Framework.Vector3,System.Collections.Generic.ICollection{Microsoft.Xna.Framework.Vector3},System.Collections.Generic.Stack{Microsoft.Xna.Framework.Vector3}@,System.Single@,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors)
name: TryFindPath
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_TryFindPath__0_System_Collections_Generic_ICollection__0__System_Collections_Generic_Stack__0___System_Single__MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_
- name: (
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: ','
- name: " "
- uid: System.Collections.Generic.ICollection`1
name: ICollection
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name: (
- name: Of
- name: " "
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: )
- name: ','
- name: " "
- uid: System.Collections.Generic.Stack`1
name: Stack
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.stack-1
- name: (
- name: Of
- name: " "
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: )
- name: ','
- name: " "
- uid: System.Single
name: Single
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: ','
- name: " "
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost
name: GetCost
href: MLEM.Pathfinding.AStar-1.GetCost.html
- name: ','
- name: " "
- uid: System.Single
name: Single
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: '?'
- name: ','
- name: " "
- uid: System.Int32
name: Integer
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: '?'
- name: ','
- name: " "
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors
name: CollectAdditionalNeighbors
href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html
- name: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
name: ToString()
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name: Equals(object)
nameWithType: object.Equals(object)
fullName: object.Equals(object)
nameWithType.vb: Object.Equals(Object)
fullName.vb: Object.Equals(Object)
name.vb: Equals(Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- 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)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- 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.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.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
name: GetHashCode()
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- 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.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
name: MemberwiseClone()
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
- uid: Microsoft.Xna.Framework
commentId: N:Microsoft.Xna.Framework
isExternal: true
name: Microsoft.Xna.Framework
nameWithType: Microsoft.Xna.Framework
fullName: Microsoft.Xna.Framework
spec.csharp:
- uid: Microsoft
name: Microsoft
isExternal: true
- name: .
- uid: Microsoft.Xna
name: Xna
isExternal: true
- name: .
- uid: Microsoft.Xna.Framework
name: Framework
isExternal: true
spec.vb:
- uid: Microsoft
name: Microsoft
isExternal: true
- name: .
- uid: Microsoft.Xna
name: Xna
isExternal: true
- name: .
- uid: Microsoft.Xna.Framework
name: Framework
isExternal: true
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- uid: MLEM.Pathfinding.AStar`1.DefaultCostFunction
commentId: F:MLEM.Pathfinding.AStar`1.DefaultCostFunction
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_DefaultCostFunction
name: DefaultCostFunction
nameWithType: AStar<T>.DefaultCostFunction
fullName: MLEM.Pathfinding.AStar<T>.DefaultCostFunction
nameWithType.vb: AStar(Of T).DefaultCostFunction
fullName.vb: MLEM.Pathfinding.AStar(Of T).DefaultCostFunction
- uid: MLEM.Pathfinding.AStar`1.DefaultCost
commentId: F:MLEM.Pathfinding.AStar`1.DefaultCost
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_DefaultCost
name: DefaultCost
nameWithType: AStar<T>.DefaultCost
fullName: MLEM.Pathfinding.AStar<T>.DefaultCost
nameWithType.vb: AStar(Of T).DefaultCost
fullName.vb: MLEM.Pathfinding.AStar(Of T).DefaultCost
- uid: MLEM.Pathfinding.AStar`1.DefaultMaxTries
commentId: F:MLEM.Pathfinding.AStar`1.DefaultMaxTries
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_DefaultMaxTries
name: DefaultMaxTries
nameWithType: AStar<T>.DefaultMaxTries
fullName: MLEM.Pathfinding.AStar<T>.DefaultMaxTries
nameWithType.vb: AStar(Of T).DefaultMaxTries
fullName.vb: MLEM.Pathfinding.AStar(Of T).DefaultMaxTries
- uid: MLEM.Pathfinding.AStar`1.DefaultAdditionalNeighbors
commentId: F:MLEM.Pathfinding.AStar`1.DefaultAdditionalNeighbors
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_DefaultAdditionalNeighbors
name: DefaultAdditionalNeighbors
nameWithType: AStar<T>.DefaultAdditionalNeighbors
fullName: MLEM.Pathfinding.AStar<T>.DefaultAdditionalNeighbors
nameWithType.vb: AStar(Of T).DefaultAdditionalNeighbors
fullName.vb: MLEM.Pathfinding.AStar(Of T).DefaultAdditionalNeighbors
- uid: MLEM.Pathfinding.AStar`1.LastTriesNeeded
commentId: P:MLEM.Pathfinding.AStar`1.LastTriesNeeded
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_LastTriesNeeded
name: LastTriesNeeded
nameWithType: AStar<T>.LastTriesNeeded
fullName: MLEM.Pathfinding.AStar<T>.LastTriesNeeded
nameWithType.vb: AStar(Of T).LastTriesNeeded
fullName.vb: MLEM.Pathfinding.AStar(Of T).LastTriesNeeded
- uid: MLEM.Pathfinding.AStar`1.LastTimeNeeded
commentId: P:MLEM.Pathfinding.AStar`1.LastTimeNeeded
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_LastTimeNeeded
name: LastTimeNeeded
nameWithType: AStar<T>.LastTimeNeeded
fullName: MLEM.Pathfinding.AStar<T>.LastTimeNeeded
nameWithType.vb: AStar(Of T).LastTimeNeeded
fullName.vb: MLEM.Pathfinding.AStar(Of T).LastTimeNeeded
- uid: MLEM.Pathfinding.AStar`1.FindPath(`0,`0,MLEM.Pathfinding.AStar{`0}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{`0}.CollectAdditionalNeighbors)
commentId: M:MLEM.Pathfinding.AStar`1.FindPath(`0,`0,MLEM.Pathfinding.AStar{`0}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{`0}.CollectAdditionalNeighbors)
isExternal: true
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_FindPath__0__0_MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_
name: FindPath(T, T, GetCost, float?, int?, CollectAdditionalNeighbors)
nameWithType: AStar<T>.FindPath(T, T, AStar<T>.GetCost, float?, int?, AStar<T>.CollectAdditionalNeighbors)
fullName: MLEM.Pathfinding.AStar<T>.FindPath(T, T, MLEM.Pathfinding.AStar<T>.GetCost, float?, int?, MLEM.Pathfinding.AStar<T>.CollectAdditionalNeighbors)
nameWithType.vb: AStar(Of T).FindPath(T, T, AStar(Of T).GetCost, Single?, Integer?, AStar(Of T).CollectAdditionalNeighbors)
fullName.vb: MLEM.Pathfinding.AStar(Of T).FindPath(T, T, MLEM.Pathfinding.AStar(Of T).GetCost, Single?, Integer?, MLEM.Pathfinding.AStar(Of T).CollectAdditionalNeighbors)
name.vb: FindPath(T, T, GetCost, Single?, Integer?, CollectAdditionalNeighbors)
spec.csharp:
- uid: MLEM.Pathfinding.AStar`1.FindPath(`0,`0,MLEM.Pathfinding.AStar{`0}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{`0}.CollectAdditionalNeighbors)
name: FindPath
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_FindPath__0__0_MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_
- name: (
- name: T
- name: ','
- name: " "
- name: T
- name: ','
- name: " "
- uid: MLEM.Pathfinding.AStar`1.GetCost
name: GetCost
href: MLEM.Pathfinding.AStar-1.GetCost.html
- name: ','
- name: " "
- uid: System.Single
name: float
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: '?'
- name: ','
- name: " "
- uid: System.Int32
name: int
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: '?'
- name: ','
- name: " "
- uid: MLEM.Pathfinding.AStar`1.CollectAdditionalNeighbors
name: CollectAdditionalNeighbors
href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html
- name: )
spec.vb:
- uid: MLEM.Pathfinding.AStar`1.FindPath(`0,`0,MLEM.Pathfinding.AStar{`0}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{`0}.CollectAdditionalNeighbors)
name: FindPath
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_FindPath__0__0_MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_
- name: (
- name: T
- name: ','
- name: " "
- name: T
- name: ','
- name: " "
- uid: MLEM.Pathfinding.AStar`1.GetCost
name: GetCost
href: MLEM.Pathfinding.AStar-1.GetCost.html
- name: ','
- name: " "
- uid: System.Single
name: Single
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: '?'
- name: ','
- name: " "
- uid: System.Int32
name: Integer
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: '?'
- name: ','
- name: " "
- uid: MLEM.Pathfinding.AStar`1.CollectAdditionalNeighbors
name: CollectAdditionalNeighbors
href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html
- name: )
- uid: MLEM.Pathfinding.AStar`1.TryFindPath(`0,System.Collections.Generic.ICollection{`0},System.Collections.Generic.Stack{`0}@,System.Single@,MLEM.Pathfinding.AStar{`0}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{`0}.CollectAdditionalNeighbors)
commentId: M:MLEM.Pathfinding.AStar`1.TryFindPath(`0,System.Collections.Generic.ICollection{`0},System.Collections.Generic.Stack{`0}@,System.Single@,MLEM.Pathfinding.AStar{`0}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{`0}.CollectAdditionalNeighbors)
isExternal: true
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_TryFindPath__0_System_Collections_Generic_ICollection__0__System_Collections_Generic_Stack__0___System_Single__MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_
name: TryFindPath(T, ICollection<T>, out Stack<T>, out float, GetCost, float?, int?, CollectAdditionalNeighbors)
nameWithType: AStar<T>.TryFindPath(T, ICollection<T>, out Stack<T>, out float, AStar<T>.GetCost, float?, int?, AStar<T>.CollectAdditionalNeighbors)
fullName: MLEM.Pathfinding.AStar<T>.TryFindPath(T, System.Collections.Generic.ICollection<T>, out System.Collections.Generic.Stack<T>, out float, MLEM.Pathfinding.AStar<T>.GetCost, float?, int?, MLEM.Pathfinding.AStar<T>.CollectAdditionalNeighbors)
nameWithType.vb: AStar(Of T).TryFindPath(T, ICollection(Of T), Stack(Of T), Single, AStar(Of T).GetCost, Single?, Integer?, AStar(Of T).CollectAdditionalNeighbors)
fullName.vb: MLEM.Pathfinding.AStar(Of T).TryFindPath(T, System.Collections.Generic.ICollection(Of T), System.Collections.Generic.Stack(Of T), Single, MLEM.Pathfinding.AStar(Of T).GetCost, Single?, Integer?, MLEM.Pathfinding.AStar(Of T).CollectAdditionalNeighbors)
name.vb: TryFindPath(T, ICollection(Of T), Stack(Of T), Single, GetCost, Single?, Integer?, CollectAdditionalNeighbors)
spec.csharp:
- uid: MLEM.Pathfinding.AStar`1.TryFindPath(`0,System.Collections.Generic.ICollection{`0},System.Collections.Generic.Stack{`0}@,System.Single@,MLEM.Pathfinding.AStar{`0}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{`0}.CollectAdditionalNeighbors)
name: TryFindPath
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_TryFindPath__0_System_Collections_Generic_ICollection__0__System_Collections_Generic_Stack__0___System_Single__MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_
- name: (
- name: T
- name: ','
- name: " "
- uid: System.Collections.Generic.ICollection`1
name: ICollection
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name: <
- name: T
- name: '>'
- name: ','
- name: " "
- name: out
- name: " "
- uid: System.Collections.Generic.Stack`1
name: Stack
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.stack-1
- name: <
- name: T
- name: '>'
- name: ','
- name: " "
- name: out
- name: " "
- uid: System.Single
name: float
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: ','
- name: " "
- uid: MLEM.Pathfinding.AStar`1.GetCost
name: GetCost
href: MLEM.Pathfinding.AStar-1.GetCost.html
- name: ','
- name: " "
- uid: System.Single
name: float
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: '?'
- name: ','
- name: " "
- uid: System.Int32
name: int
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: '?'
- name: ','
- name: " "
- uid: MLEM.Pathfinding.AStar`1.CollectAdditionalNeighbors
name: CollectAdditionalNeighbors
href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html
- name: )
spec.vb:
- uid: MLEM.Pathfinding.AStar`1.TryFindPath(`0,System.Collections.Generic.ICollection{`0},System.Collections.Generic.Stack{`0}@,System.Single@,MLEM.Pathfinding.AStar{`0}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{`0}.CollectAdditionalNeighbors)
name: TryFindPath
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_TryFindPath__0_System_Collections_Generic_ICollection__0__System_Collections_Generic_Stack__0___System_Single__MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_
- name: (
- name: T
- name: ','
- name: " "
- uid: System.Collections.Generic.ICollection`1
name: ICollection
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: ','
- name: " "
- uid: System.Collections.Generic.Stack`1
name: Stack
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.stack-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: ','
- name: " "
- uid: System.Single
name: Single
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: ','
- name: " "
- uid: MLEM.Pathfinding.AStar`1.GetCost
name: GetCost
href: MLEM.Pathfinding.AStar-1.GetCost.html
- name: ','
- name: " "
- uid: System.Single
name: Single
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: '?'
- name: ','
- name: " "
- uid: System.Int32
name: Integer
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: '?'
- name: ','
- name: " "
- uid: MLEM.Pathfinding.AStar`1.CollectAdditionalNeighbors
name: CollectAdditionalNeighbors
href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html
- name: )
- uid: MLEM.Pathfinding.AStar3.#ctor*
commentId: Overload:MLEM.Pathfinding.AStar3.#ctor
href: MLEM.Pathfinding.AStar3.html#MLEM_Pathfinding_AStar3__ctor_MLEM_Pathfinding_AStar_Microsoft_Xna_Framework_Vector3__GetCost_System_Boolean_System_Single_System_Int32_MLEM_Pathfinding_AStar_Microsoft_Xna_Framework_Vector3__CollectAdditionalNeighbors_
name: AStar3
nameWithType: AStar3.AStar3
fullName: MLEM.Pathfinding.AStar3.AStar3
nameWithType.vb: AStar3.New
fullName.vb: MLEM.Pathfinding.AStar3.New
name.vb: New
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost
commentId: T:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost
parent: MLEM.Pathfinding
definition: MLEM.Pathfinding.AStar`1.GetCost
href: MLEM.Pathfinding.AStar-1.html
name: AStar<Vector3>.GetCost
nameWithType: AStar<Vector3>.GetCost
fullName: MLEM.Pathfinding.AStar<Microsoft.Xna.Framework.Vector3>.GetCost
nameWithType.vb: AStar(Of Vector3).GetCost
fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Vector3).GetCost
name.vb: AStar(Of Vector3).GetCost
spec.csharp:
- uid: MLEM.Pathfinding.AStar`1
name: AStar
href: MLEM.Pathfinding.AStar-1.html
- name: <
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: '>'
- name: .
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost
name: GetCost
href: MLEM.Pathfinding.AStar-1.GetCost.html
spec.vb:
- uid: MLEM.Pathfinding.AStar`1
name: AStar
href: MLEM.Pathfinding.AStar-1.html
- name: (
- name: Of
- name: " "
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: )
- name: .
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetCost
name: GetCost
href: MLEM.Pathfinding.AStar-1.GetCost.html
- 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: 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: 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: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors
commentId: T:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors
parent: MLEM.Pathfinding
definition: MLEM.Pathfinding.AStar`1.CollectAdditionalNeighbors
href: MLEM.Pathfinding.AStar-1.html
name: AStar<Vector3>.CollectAdditionalNeighbors
nameWithType: AStar<Vector3>.CollectAdditionalNeighbors
fullName: MLEM.Pathfinding.AStar<Microsoft.Xna.Framework.Vector3>.CollectAdditionalNeighbors
nameWithType.vb: AStar(Of Vector3).CollectAdditionalNeighbors
fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Vector3).CollectAdditionalNeighbors
name.vb: AStar(Of Vector3).CollectAdditionalNeighbors
spec.csharp:
- uid: MLEM.Pathfinding.AStar`1
name: AStar
href: MLEM.Pathfinding.AStar-1.html
- name: <
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: '>'
- name: .
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors
name: CollectAdditionalNeighbors
href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html
spec.vb:
- uid: MLEM.Pathfinding.AStar`1
name: AStar
href: MLEM.Pathfinding.AStar-1.html
- name: (
- name: Of
- name: " "
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: )
- name: .
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectAdditionalNeighbors
name: CollectAdditionalNeighbors
href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html
- uid: MLEM.Pathfinding.AStar`1.GetCost
commentId: T:MLEM.Pathfinding.AStar`1.GetCost
parent: MLEM.Pathfinding
href: MLEM.Pathfinding.AStar-1.html
name: AStar<T>.GetCost
nameWithType: AStar<T>.GetCost
fullName: MLEM.Pathfinding.AStar<T>.GetCost
nameWithType.vb: AStar(Of T).GetCost
fullName.vb: MLEM.Pathfinding.AStar(Of T).GetCost
name.vb: AStar(Of T).GetCost
spec.csharp:
- uid: MLEM.Pathfinding.AStar`1
name: AStar
href: MLEM.Pathfinding.AStar-1.html
- name: <
- name: T
- name: '>'
- name: .
- uid: MLEM.Pathfinding.AStar`1.GetCost
name: GetCost
href: MLEM.Pathfinding.AStar-1.GetCost.html
spec.vb:
- uid: MLEM.Pathfinding.AStar`1
name: AStar
href: MLEM.Pathfinding.AStar-1.html
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: .
- uid: MLEM.Pathfinding.AStar`1.GetCost
name: GetCost
href: MLEM.Pathfinding.AStar-1.GetCost.html
- uid: MLEM.Pathfinding.AStar`1.CollectAdditionalNeighbors
commentId: T:MLEM.Pathfinding.AStar`1.CollectAdditionalNeighbors
parent: MLEM.Pathfinding
href: MLEM.Pathfinding.AStar-1.html
name: AStar<T>.CollectAdditionalNeighbors
nameWithType: AStar<T>.CollectAdditionalNeighbors
fullName: MLEM.Pathfinding.AStar<T>.CollectAdditionalNeighbors
nameWithType.vb: AStar(Of T).CollectAdditionalNeighbors
fullName.vb: MLEM.Pathfinding.AStar(Of T).CollectAdditionalNeighbors
name.vb: AStar(Of T).CollectAdditionalNeighbors
spec.csharp:
- uid: MLEM.Pathfinding.AStar`1
name: AStar
href: MLEM.Pathfinding.AStar-1.html
- name: <
- name: T
- name: '>'
- name: .
- uid: MLEM.Pathfinding.AStar`1.CollectAdditionalNeighbors
name: CollectAdditionalNeighbors
href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html
spec.vb:
- uid: MLEM.Pathfinding.AStar`1
name: AStar
href: MLEM.Pathfinding.AStar-1.html
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: .
- uid: MLEM.Pathfinding.AStar`1.CollectAdditionalNeighbors
name: CollectAdditionalNeighbors
href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetHeuristicDistance(Microsoft.Xna.Framework.Vector3,Microsoft.Xna.Framework.Vector3)
commentId: M:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetHeuristicDistance(Microsoft.Xna.Framework.Vector3,Microsoft.Xna.Framework.Vector3)
parent: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}
definition: MLEM.Pathfinding.AStar`1.GetHeuristicDistance(`0,`0)
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_GetHeuristicDistance__0__0_
name: GetHeuristicDistance(Vector3, Vector3)
nameWithType: AStar<Vector3>.GetHeuristicDistance(Vector3, Vector3)
fullName: MLEM.Pathfinding.AStar<Microsoft.Xna.Framework.Vector3>.GetHeuristicDistance(Microsoft.Xna.Framework.Vector3, Microsoft.Xna.Framework.Vector3)
nameWithType.vb: AStar(Of Vector3).GetHeuristicDistance(Vector3, Vector3)
fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Vector3).GetHeuristicDistance(Microsoft.Xna.Framework.Vector3, Microsoft.Xna.Framework.Vector3)
spec.csharp:
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetHeuristicDistance(Microsoft.Xna.Framework.Vector3,Microsoft.Xna.Framework.Vector3)
name: GetHeuristicDistance
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_GetHeuristicDistance__0__0_
- name: (
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: ','
- name: " "
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: )
spec.vb:
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.GetHeuristicDistance(Microsoft.Xna.Framework.Vector3,Microsoft.Xna.Framework.Vector3)
name: GetHeuristicDistance
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_GetHeuristicDistance__0__0_
- name: (
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: ','
- name: " "
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: )
- uid: MLEM.Pathfinding.AStar3.GetHeuristicDistance*
commentId: Overload:MLEM.Pathfinding.AStar3.GetHeuristicDistance
href: MLEM.Pathfinding.AStar3.html#MLEM_Pathfinding_AStar3_GetHeuristicDistance_Microsoft_Xna_Framework_Vector3_Microsoft_Xna_Framework_Vector3_
name: GetHeuristicDistance
nameWithType: AStar3.GetHeuristicDistance
fullName: MLEM.Pathfinding.AStar3.GetHeuristicDistance
- uid: MLEM.Pathfinding.AStar`1.GetHeuristicDistance(`0,`0)
commentId: M:MLEM.Pathfinding.AStar`1.GetHeuristicDistance(`0,`0)
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_GetHeuristicDistance__0__0_
name: GetHeuristicDistance(T, T)
nameWithType: AStar<T>.GetHeuristicDistance(T, T)
fullName: MLEM.Pathfinding.AStar<T>.GetHeuristicDistance(T, T)
nameWithType.vb: AStar(Of T).GetHeuristicDistance(T, T)
fullName.vb: MLEM.Pathfinding.AStar(Of T).GetHeuristicDistance(T, T)
spec.csharp:
- uid: MLEM.Pathfinding.AStar`1.GetHeuristicDistance(`0,`0)
name: GetHeuristicDistance
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_GetHeuristicDistance__0__0_
- name: (
- name: T
- name: ','
- name: " "
- name: T
- name: )
spec.vb:
- uid: MLEM.Pathfinding.AStar`1.GetHeuristicDistance(`0,`0)
name: GetHeuristicDistance
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_GetHeuristicDistance__0__0_
- name: (
- name: T
- name: ','
- name: " "
- name: T
- name: )
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectNeighbors(Microsoft.Xna.Framework.Vector3,System.Collections.Generic.ISet{Microsoft.Xna.Framework.Vector3})
commentId: M:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectNeighbors(Microsoft.Xna.Framework.Vector3,System.Collections.Generic.ISet{Microsoft.Xna.Framework.Vector3})
parent: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}
definition: MLEM.Pathfinding.AStar`1.CollectNeighbors(`0,System.Collections.Generic.ISet{`0})
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_CollectNeighbors__0_System_Collections_Generic_ISet__0__
name: CollectNeighbors(Vector3, ISet<Vector3>)
nameWithType: AStar<Vector3>.CollectNeighbors(Vector3, ISet<Vector3>)
fullName: MLEM.Pathfinding.AStar<Microsoft.Xna.Framework.Vector3>.CollectNeighbors(Microsoft.Xna.Framework.Vector3, System.Collections.Generic.ISet<Microsoft.Xna.Framework.Vector3>)
nameWithType.vb: AStar(Of Vector3).CollectNeighbors(Vector3, ISet(Of Vector3))
fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Vector3).CollectNeighbors(Microsoft.Xna.Framework.Vector3, System.Collections.Generic.ISet(Of Microsoft.Xna.Framework.Vector3))
name.vb: CollectNeighbors(Vector3, ISet(Of Vector3))
spec.csharp:
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectNeighbors(Microsoft.Xna.Framework.Vector3,System.Collections.Generic.ISet{Microsoft.Xna.Framework.Vector3})
name: CollectNeighbors
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_CollectNeighbors__0_System_Collections_Generic_ISet__0__
- name: (
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: ','
- name: " "
- uid: System.Collections.Generic.ISet`1
name: ISet
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1
- name: <
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: '>'
- name: )
spec.vb:
- uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Vector3}.CollectNeighbors(Microsoft.Xna.Framework.Vector3,System.Collections.Generic.ISet{Microsoft.Xna.Framework.Vector3})
name: CollectNeighbors
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_CollectNeighbors__0_System_Collections_Generic_ISet__0__
- name: (
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: ','
- name: " "
- uid: System.Collections.Generic.ISet`1
name: ISet
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1
- name: (
- name: Of
- name: " "
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: )
- name: )
- uid: MLEM.Pathfinding.AStar3.CollectNeighbors*
commentId: Overload:MLEM.Pathfinding.AStar3.CollectNeighbors
href: MLEM.Pathfinding.AStar3.html#MLEM_Pathfinding_AStar3_CollectNeighbors_Microsoft_Xna_Framework_Vector3_System_Collections_Generic_ISet_Microsoft_Xna_Framework_Vector3__
name: CollectNeighbors
nameWithType: AStar3.CollectNeighbors
fullName: MLEM.Pathfinding.AStar3.CollectNeighbors
- uid: System.Collections.Generic.ISet{Microsoft.Xna.Framework.Vector3}
commentId: T:System.Collections.Generic.ISet{Microsoft.Xna.Framework.Vector3}
parent: System.Collections.Generic
definition: System.Collections.Generic.ISet`1
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1
name: ISet<Vector3>
nameWithType: ISet<Vector3>
fullName: System.Collections.Generic.ISet<Microsoft.Xna.Framework.Vector3>
nameWithType.vb: ISet(Of Vector3)
fullName.vb: System.Collections.Generic.ISet(Of Microsoft.Xna.Framework.Vector3)
name.vb: ISet(Of Vector3)
spec.csharp:
- uid: System.Collections.Generic.ISet`1
name: ISet
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1
- name: <
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: '>'
spec.vb:
- uid: System.Collections.Generic.ISet`1
name: ISet
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1
- name: (
- name: Of
- name: " "
- uid: Microsoft.Xna.Framework.Vector3
name: Vector3
isExternal: true
- name: )
- uid: MLEM.Pathfinding.AStar`1.CollectNeighbors(`0,System.Collections.Generic.ISet{`0})
commentId: M:MLEM.Pathfinding.AStar`1.CollectNeighbors(`0,System.Collections.Generic.ISet{`0})
isExternal: true
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_CollectNeighbors__0_System_Collections_Generic_ISet__0__
name: CollectNeighbors(T, ISet<T>)
nameWithType: AStar<T>.CollectNeighbors(T, ISet<T>)
fullName: MLEM.Pathfinding.AStar<T>.CollectNeighbors(T, System.Collections.Generic.ISet<T>)
nameWithType.vb: AStar(Of T).CollectNeighbors(T, ISet(Of T))
fullName.vb: MLEM.Pathfinding.AStar(Of T).CollectNeighbors(T, System.Collections.Generic.ISet(Of T))
name.vb: CollectNeighbors(T, ISet(Of T))
spec.csharp:
- uid: MLEM.Pathfinding.AStar`1.CollectNeighbors(`0,System.Collections.Generic.ISet{`0})
name: CollectNeighbors
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_CollectNeighbors__0_System_Collections_Generic_ISet__0__
- name: (
- name: T
- name: ','
- name: " "
- uid: System.Collections.Generic.ISet`1
name: ISet
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1
- name: <
- name: T
- name: '>'
- name: )
spec.vb:
- uid: MLEM.Pathfinding.AStar`1.CollectNeighbors(`0,System.Collections.Generic.ISet{`0})
name: CollectNeighbors
href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_CollectNeighbors__0_System_Collections_Generic_ISet__0__
- name: (
- name: T
- name: ','
- name: " "
- uid: System.Collections.Generic.ISet`1
name: ISet
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: )
- uid: System.Collections.Generic.ISet`1
commentId: T:System.Collections.Generic.ISet`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1
name: ISet<T>
nameWithType: ISet<T>
fullName: System.Collections.Generic.ISet<T>
nameWithType.vb: ISet(Of T)
fullName.vb: System.Collections.Generic.ISet(Of T)
name.vb: ISet(Of T)
spec.csharp:
- uid: System.Collections.Generic.ISet`1
name: ISet
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Collections.Generic.ISet`1
name: ISet
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: System.Collections.Generic
commentId: N:System.Collections.Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System.Collections.Generic
nameWithType: System.Collections.Generic
fullName: System.Collections.Generic
spec.csharp:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- name: .
- uid: System.Collections.Generic
name: Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
spec.vb:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- name: .
- uid: System.Collections.Generic
name: Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic