pub struct NavMesh { /* private fields */ }
Expand description

Nav mesh object used to find shortest path between two points.

Implementations§

source§

impl NavMesh

source

pub fn new( vertices: Vec<NavVec3, Global>, triangles: Vec<NavTriangle, Global> ) -> Result<NavMesh, Error>

Create new nav mesh object from vertices and triangles.

Arguments
  • vertices - list of vertices points.
  • triangles - list of vertices indices that produces triangles.
Returns

Ok with nav mesh object or Err with Error::TriangleVerticeIndexOutOfBounds if input data is invalid.

Example
use navmesh::*;

let vertices = vec![
    (0.0, 0.0, 0.0).into(), // 0
    (1.0, 0.0, 0.0).into(), // 1
    (2.0, 0.0, 1.0).into(), // 2
    (0.0, 1.0, 0.0).into(), // 3
    (1.0, 1.0, 0.0).into(), // 4
    (2.0, 1.0, 1.0).into(), // 5
];
let triangles = vec![
    (0, 1, 4).into(), // 0
    (4, 3, 0).into(), // 1
    (1, 2, 5).into(), // 2
    (5, 4, 1).into(), // 3
];

let mesh = NavMesh::new(vertices, triangles).unwrap();
source

pub fn thicken(&self, value: f32) -> Result<NavMesh, Error>

source

pub fn scale( &self, value: NavVec3, origin: Option<NavVec3> ) -> Result<NavMesh, Error>

source

pub fn id(&self) -> ID<NavMesh>

Nav mesh identifier.

source

pub fn origin(&self) -> NavVec3

Nav mesh origin point.

source

pub fn vertices(&self) -> &[NavVec3]

Reference to list of nav mesh vertices points.

source

pub fn triangles(&self) -> &[NavTriangle]

Reference to list of nav mesh triangles.

source

pub fn areas(&self) -> &[NavArea]

Reference to list of nav mesh area descriptors.

source

pub fn set_area_cost(&mut self, index: usize, cost: f32) -> f32

Set area cost by triangle index.

Arguments
  • index - triangle index.
  • cost - cost factor.
Returns

Old area cost value.

source

pub fn closest_point(&self, point: NavVec3, query: NavQuery) -> Option<NavVec3>

Find closest point on nav mesh.

Arguments
  • point - query point.
  • query - query quality.
Returns

Some with point on nav mesh if found or None otherwise.

source

pub fn find_path( &self, from: NavVec3, to: NavVec3, query: NavQuery, mode: NavPathMode ) -> Option<Vec<NavVec3, Global>>

Find shortest path on nav mesh between two points.

Arguments
  • from - query point from.
  • to - query point to.
  • query - query quality.
  • mode - path finding quality.
Returns

Some with path points on nav mesh if found or None otherwise.

Example
use navmesh::*;

let vertices = vec![
    (0.0, 0.0, 0.0).into(), // 0
    (1.0, 0.0, 0.0).into(), // 1
    (2.0, 0.0, 1.0).into(), // 2
    (0.0, 1.0, 0.0).into(), // 3
    (1.0, 1.0, 0.0).into(), // 4
    (2.0, 1.0, 1.0).into(), // 5
];
let triangles = vec![
    (0, 1, 4).into(), // 0
    (4, 3, 0).into(), // 1
    (1, 2, 5).into(), // 2
    (5, 4, 1).into(), // 3
];

let mesh = NavMesh::new(vertices, triangles).unwrap();
let path = mesh
    .find_path(
        (0.0, 1.0, 0.0).into(),
        (1.5, 0.25, 0.5).into(),
        NavQuery::Accuracy,
        NavPathMode::MidPoints,
    )
    .unwrap();
assert_eq!(
    path.into_iter()
        .map(|v| (
            (v.x * 10.0) as i32,
            (v.y * 10.0) as i32,
            (v.z * 10.0) as i32,
        ))
        .collect::<Vec<_>>(),
    vec![(0, 10, 0), (10, 5, 0), (15, 2, 5),]
);
source

pub fn find_path_custom<F>( &self, from: NavVec3, to: NavVec3, query: NavQuery, mode: NavPathMode, filter: F ) -> Option<Vec<NavVec3, Global>>where F: FnMut(f32, usize, usize) -> bool,

Find shortest path on nav mesh between two points, providing custom filtering function.

Arguments
  • from - query point from.
  • to - query point to.
  • query - query quality.
  • mode - path finding quality.
  • filter - closure that gives you a connection distance squared, first triangle index and second triangle index.
Returns

Some with path points on nav mesh if found or None otherwise.

Example
use navmesh::*;

let vertices = vec![
    (0.0, 0.0, 0.0).into(), // 0
    (1.0, 0.0, 0.0).into(), // 1
    (2.0, 0.0, 1.0).into(), // 2
    (0.0, 1.0, 0.0).into(), // 3
    (1.0, 1.0, 0.0).into(), // 4
    (2.0, 1.0, 1.0).into(), // 5
];
let triangles = vec![
    (0, 1, 4).into(), // 0
    (4, 3, 0).into(), // 1
    (1, 2, 5).into(), // 2
    (5, 4, 1).into(), // 3
];

let mesh = NavMesh::new(vertices, triangles).unwrap();
let path = mesh
    .find_path_custom(
        (0.0, 1.0, 0.0).into(),
        (1.5, 0.25, 0.5).into(),
        NavQuery::Accuracy,
        NavPathMode::MidPoints,
        |_dist_sqr, _first_idx, _second_idx| true,
    )
    .unwrap();
assert_eq!(
    path.into_iter()
        .map(|v| (
            (v.x * 10.0) as i32,
            (v.y * 10.0) as i32,
            (v.z * 10.0) as i32,
        ))
        .collect::<Vec<_>>(),
    vec![(0, 10, 0), (10, 5, 0), (15, 2, 5),]
);
source

pub fn find_path_triangles( &self, from: usize, to: usize ) -> Option<(Vec<usize, Global>, f32)>

Find shortest path on nav mesh between two points.

Arguments
  • from - query point from.
  • to - query point to.
  • query - query quality.
  • mode - path finding quality.
Returns

Some with path points on nav mesh and path length if found or None otherwise.

Example
use navmesh::*;

let vertices = vec![
    (0.0, 0.0, 0.0).into(), // 0
    (1.0, 0.0, 0.0).into(), // 1
    (2.0, 0.0, 1.0).into(), // 2
    (0.0, 1.0, 0.0).into(), // 3
    (1.0, 1.0, 0.0).into(), // 4
    (2.0, 1.0, 1.0).into(), // 5
];
let triangles = vec![
    (0, 1, 4).into(), // 0
    (4, 3, 0).into(), // 1
    (1, 2, 5).into(), // 2
    (5, 4, 1).into(), // 3
];

let mesh = NavMesh::new(vertices, triangles).unwrap();
let path = mesh.find_path_triangles(1, 2).unwrap().0;
assert_eq!(path, vec![1, 0, 3, 2]);
source

pub fn find_path_triangles_custom<F>( &self, from: usize, to: usize, filter: F ) -> Option<(Vec<usize, Global>, f32)>where F: FnMut(f32, usize, usize) -> bool,

Find shortest path on nav mesh between two points, providing custom filtering function.

Arguments
  • from - query point from.
  • to - query point to.
  • query - query quality.
  • mode - path finding quality.
  • filter - closure that gives you a connection distance squared, first triangle index and second triangle index.
Returns

Some with path points on nav mesh and path length if found or None otherwise.

Example
use navmesh::*;

let vertices = vec![
    (0.0, 0.0, 0.0).into(), // 0
    (1.0, 0.0, 0.0).into(), // 1
    (2.0, 0.0, 1.0).into(), // 2
    (0.0, 1.0, 0.0).into(), // 3
    (1.0, 1.0, 0.0).into(), // 4
    (2.0, 1.0, 1.0).into(), // 5
];
let triangles = vec![
    (0, 1, 4).into(), // 0
    (4, 3, 0).into(), // 1
    (1, 2, 5).into(), // 2
    (5, 4, 1).into(), // 3
];

let mesh = NavMesh::new(vertices, triangles).unwrap();
let path = mesh.find_path_triangles_custom(
    1,
    2,
    |_dist_sqr, _first_idx, _second_idx| true
).unwrap().0;
assert_eq!(path, vec![1, 0, 3, 2]);
source

pub fn find_triangle_islands(&self) -> Vec<Vec<usize, Global>, Global>

source

pub fn find_closest_triangle( &self, point: NavVec3, query: NavQuery ) -> Option<usize>

Find closest triangle on nav mesh closest to given point.

Arguments
  • point - query point.
  • query - query quality.
Returns

Some with nav mesh triangle index if found or None otherwise.

source

pub fn path_target_point( path: &[NavVec3], point: NavVec3, offset: f32 ) -> Option<(NavVec3, f32)>

Find target point on nav mesh path.

Arguments
  • path - path points.
  • point - source point.
  • offset - target point offset from the source on path.
Returns

Some with point and distance from path start point if found or None otherwise.

source

pub fn project_on_path(path: &[NavVec3], point: NavVec3, offset: f32) -> f32

Project point on nav mesh path.

Arguments
  • path - path points.
  • point - source point.
  • offset - target point offset from the source on path.
Returns

Distance from path start point.

source

pub fn point_on_path(path: &[NavVec3], s: f32) -> Option<NavVec3>

Find point on nav mesh path at given distance.

Arguments
  • path - path points.
  • s - Distance from path start point.
Returns

Some with point on path ot None otherwise.

source

pub fn path_length(path: &[NavVec3]) -> f32

Calculate path length.

Arguments
  • path - path points.
Returns

Path length.

Trait Implementations§

source§

impl Clone for NavMesh

source§

fn clone(&self) -> NavMesh

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for NavMesh

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for NavMesh

source§

fn default() -> NavMesh

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for NavMesh

source§

fn deserialize<__D>( __deserializer: __D ) -> Result<NavMesh, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Serialize for NavMesh

source§

fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Finalize for T

§

unsafe fn finalize_raw(data: *mut ())

Safety Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Initialize for Twhere T: Default,

§

fn initialize(&mut self)

§

unsafe fn initialize_raw(data: *mut ())

Safety Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
§

impl<SS, SP> SupersetOf<SS> for SPwhere SS: SubsetOf<SP>,

§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
§

unsafe fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> Component for Twhere T: Send + Sync + 'static,

source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,