Struct rgeometry::data::PolygonConvex[][src]

pub struct PolygonConvex<T>(_);

Implementations

$O(1)$ Assume that a polygon is convex.

Safety

The input polygon has to be strictly convex, ie. no vertices are allowed to be concave or colinear.

$O(\log n)$

$O(n \log n)$

$O(1)$

$O(n \log n)$ Uniformly sample a random convex polygon.

The output polygon is centered at (0,0), and has a maximum width and height of 2 units.

PolygonConvex::random(3, 1000, &mut rand::thread_rng())
Run

Methods from Deref<Target = Polygon<T>>

O(k) where k is the number of holes.

Panics if the edge isn’t part of the polygon.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

The resulting type after dereferencing.

Dereferences the value.

Generate a random value of T, using rng as the source of randomness.

Create an iterator that generates random values of T, using rng as the source of randomness. Read more

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more

Performs the conversion.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.