2023-10-06 00:31:10 +00:00
|
|
|
//! A module for the [`Gizmos`] [`SystemParam`].
|
2023-03-28 20:58:02 +00:00
|
|
|
|
2023-11-22 14:58:34 +00:00
|
|
|
use std::iter;
|
2023-03-20 20:57:54 +00:00
|
|
|
|
2023-11-20 09:47:50 +00:00
|
|
|
use crate::circles::DEFAULT_CIRCLE_SEGMENTS;
|
2023-03-20 20:57:54 +00:00
|
|
|
use bevy_ecs::{
|
2023-03-28 20:58:02 +00:00
|
|
|
system::{Deferred, Resource, SystemBuffer, SystemMeta, SystemParam},
|
2023-03-20 20:57:54 +00:00
|
|
|
world::World,
|
|
|
|
};
|
|
|
|
use bevy_math::{Mat2, Quat, Vec2, Vec3};
|
2023-04-24 15:23:06 +00:00
|
|
|
use bevy_render::color::Color;
|
|
|
|
use bevy_transform::TransformPoint;
|
2023-03-20 20:57:54 +00:00
|
|
|
|
|
|
|
type PositionItem = [f32; 3];
|
|
|
|
type ColorItem = [f32; 4];
|
|
|
|
|
|
|
|
#[derive(Resource, Default)]
|
|
|
|
pub(crate) struct GizmoStorage {
|
|
|
|
pub list_positions: Vec<PositionItem>,
|
|
|
|
pub list_colors: Vec<ColorItem>,
|
|
|
|
pub strip_positions: Vec<PositionItem>,
|
|
|
|
pub strip_colors: Vec<ColorItem>,
|
|
|
|
}
|
|
|
|
|
2023-10-06 00:31:10 +00:00
|
|
|
/// A [`SystemParam`] for drawing gizmos.
|
2023-07-31 19:14:52 +00:00
|
|
|
///
|
|
|
|
/// They are drawn in immediate mode, which means they will be rendered only for
|
|
|
|
/// the frames in which they are spawned.
|
|
|
|
/// Gizmos should be spawned before the [`Last`](bevy_app::Last) schedule to ensure they are drawn.
|
2023-03-28 20:58:02 +00:00
|
|
|
#[derive(SystemParam)]
|
|
|
|
pub struct Gizmos<'s> {
|
|
|
|
buffer: Deferred<'s, GizmoBuffer>,
|
|
|
|
}
|
2023-03-20 20:57:54 +00:00
|
|
|
|
|
|
|
#[derive(Default)]
|
2023-03-28 20:58:02 +00:00
|
|
|
struct GizmoBuffer {
|
2023-03-20 20:57:54 +00:00
|
|
|
list_positions: Vec<PositionItem>,
|
|
|
|
list_colors: Vec<ColorItem>,
|
|
|
|
strip_positions: Vec<PositionItem>,
|
|
|
|
strip_colors: Vec<ColorItem>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl SystemBuffer for GizmoBuffer {
|
|
|
|
fn apply(&mut self, _system_meta: &SystemMeta, world: &mut World) {
|
|
|
|
let mut storage = world.resource_mut::<GizmoStorage>();
|
|
|
|
storage.list_positions.append(&mut self.list_positions);
|
|
|
|
storage.list_colors.append(&mut self.list_colors);
|
|
|
|
storage.strip_positions.append(&mut self.strip_positions);
|
|
|
|
storage.strip_colors.append(&mut self.strip_colors);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-28 20:58:02 +00:00
|
|
|
impl<'s> Gizmos<'s> {
|
2023-07-31 19:14:52 +00:00
|
|
|
/// Draw a line in 3D from `start` to `end`.
|
|
|
|
///
|
|
|
|
/// This should be called for each frame the line needs to be rendered.
|
2023-03-28 20:58:02 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
|
|
|
/// # use bevy_gizmos::prelude::*;
|
|
|
|
/// # use bevy_render::prelude::*;
|
|
|
|
/// # use bevy_math::prelude::*;
|
|
|
|
/// fn system(mut gizmos: Gizmos) {
|
|
|
|
/// gizmos.line(Vec3::ZERO, Vec3::X, Color::GREEN);
|
|
|
|
/// }
|
|
|
|
/// # bevy_ecs::system::assert_is_system(system);
|
|
|
|
/// ```
|
2023-03-20 20:57:54 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn line(&mut self, start: Vec3, end: Vec3, color: Color) {
|
|
|
|
self.extend_list_positions([start, end]);
|
|
|
|
self.add_list_color(color, 2);
|
|
|
|
}
|
|
|
|
|
2023-07-31 19:14:52 +00:00
|
|
|
/// Draw a line in 3D with a color gradient from `start` to `end`.
|
|
|
|
///
|
|
|
|
/// This should be called for each frame the line needs to be rendered.
|
2023-03-28 20:58:02 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
|
|
|
/// # use bevy_gizmos::prelude::*;
|
|
|
|
/// # use bevy_render::prelude::*;
|
|
|
|
/// # use bevy_math::prelude::*;
|
|
|
|
/// fn system(mut gizmos: Gizmos) {
|
|
|
|
/// gizmos.line_gradient(Vec3::ZERO, Vec3::X, Color::GREEN, Color::RED);
|
|
|
|
/// }
|
|
|
|
/// # bevy_ecs::system::assert_is_system(system);
|
|
|
|
/// ```
|
2023-03-20 20:57:54 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn line_gradient(&mut self, start: Vec3, end: Vec3, start_color: Color, end_color: Color) {
|
|
|
|
self.extend_list_positions([start, end]);
|
|
|
|
self.extend_list_colors([start_color, end_color]);
|
|
|
|
}
|
|
|
|
|
2023-07-31 19:14:52 +00:00
|
|
|
/// Draw a line in 3D from `start` to `start + vector`.
|
|
|
|
///
|
|
|
|
/// This should be called for each frame the line needs to be rendered.
|
2023-03-28 20:58:02 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
|
|
|
/// # use bevy_gizmos::prelude::*;
|
|
|
|
/// # use bevy_render::prelude::*;
|
|
|
|
/// # use bevy_math::prelude::*;
|
|
|
|
/// fn system(mut gizmos: Gizmos) {
|
|
|
|
/// gizmos.ray(Vec3::Y, Vec3::X, Color::GREEN);
|
|
|
|
/// }
|
|
|
|
/// # bevy_ecs::system::assert_is_system(system);
|
|
|
|
/// ```
|
2023-03-20 20:57:54 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn ray(&mut self, start: Vec3, vector: Vec3, color: Color) {
|
|
|
|
self.line(start, start + vector, color);
|
|
|
|
}
|
|
|
|
|
2023-07-31 19:14:52 +00:00
|
|
|
/// Draw a line in 3D with a color gradient from `start` to `start + vector`.
|
|
|
|
///
|
|
|
|
/// This should be called for each frame the line needs to be rendered.
|
2023-03-28 20:58:02 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
|
|
|
/// # use bevy_gizmos::prelude::*;
|
|
|
|
/// # use bevy_render::prelude::*;
|
|
|
|
/// # use bevy_math::prelude::*;
|
|
|
|
/// fn system(mut gizmos: Gizmos) {
|
|
|
|
/// gizmos.ray_gradient(Vec3::Y, Vec3::X, Color::GREEN, Color::RED);
|
|
|
|
/// }
|
|
|
|
/// # bevy_ecs::system::assert_is_system(system);
|
|
|
|
/// ```
|
2023-03-20 20:57:54 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn ray_gradient(
|
|
|
|
&mut self,
|
|
|
|
start: Vec3,
|
|
|
|
vector: Vec3,
|
|
|
|
start_color: Color,
|
|
|
|
end_color: Color,
|
|
|
|
) {
|
|
|
|
self.line_gradient(start, start + vector, start_color, end_color);
|
|
|
|
}
|
|
|
|
|
2023-07-31 19:14:52 +00:00
|
|
|
/// Draw a line in 3D made of straight segments between the points.
|
|
|
|
///
|
|
|
|
/// This should be called for each frame the line needs to be rendered.
|
2023-03-28 20:58:02 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
|
|
|
/// # use bevy_gizmos::prelude::*;
|
|
|
|
/// # use bevy_render::prelude::*;
|
|
|
|
/// # use bevy_math::prelude::*;
|
|
|
|
/// fn system(mut gizmos: Gizmos) {
|
|
|
|
/// gizmos.linestrip([Vec3::ZERO, Vec3::X, Vec3::Y], Color::GREEN);
|
|
|
|
/// }
|
|
|
|
/// # bevy_ecs::system::assert_is_system(system);
|
|
|
|
/// ```
|
2023-03-20 20:57:54 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn linestrip(&mut self, positions: impl IntoIterator<Item = Vec3>, color: Color) {
|
2023-08-25 12:34:24 +00:00
|
|
|
self.extend_strip_positions(positions);
|
2023-03-28 20:58:02 +00:00
|
|
|
let len = self.buffer.strip_positions.len();
|
|
|
|
self.buffer
|
|
|
|
.strip_colors
|
|
|
|
.resize(len - 1, color.as_linear_rgba_f32());
|
|
|
|
self.buffer.strip_colors.push([f32::NAN; 4]);
|
2023-03-20 20:57:54 +00:00
|
|
|
}
|
|
|
|
|
2023-07-31 19:14:52 +00:00
|
|
|
/// Draw a line in 3D made of straight segments between the points, with a color gradient.
|
|
|
|
///
|
|
|
|
/// This should be called for each frame the lines need to be rendered.
|
2023-03-28 20:58:02 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
|
|
|
/// # use bevy_gizmos::prelude::*;
|
|
|
|
/// # use bevy_render::prelude::*;
|
|
|
|
/// # use bevy_math::prelude::*;
|
|
|
|
/// fn system(mut gizmos: Gizmos) {
|
|
|
|
/// gizmos.linestrip_gradient([
|
|
|
|
/// (Vec3::ZERO, Color::GREEN),
|
|
|
|
/// (Vec3::X, Color::RED),
|
|
|
|
/// (Vec3::Y, Color::BLUE)
|
|
|
|
/// ]);
|
|
|
|
/// }
|
|
|
|
/// # bevy_ecs::system::assert_is_system(system);
|
|
|
|
/// ```
|
2023-03-20 20:57:54 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn linestrip_gradient(&mut self, points: impl IntoIterator<Item = (Vec3, Color)>) {
|
|
|
|
let points = points.into_iter();
|
|
|
|
|
2023-03-28 20:58:02 +00:00
|
|
|
let GizmoBuffer {
|
|
|
|
strip_positions,
|
|
|
|
strip_colors,
|
|
|
|
..
|
|
|
|
} = &mut *self.buffer;
|
|
|
|
|
2023-03-20 20:57:54 +00:00
|
|
|
let (min, _) = points.size_hint();
|
2023-03-28 20:58:02 +00:00
|
|
|
strip_positions.reserve(min);
|
|
|
|
strip_colors.reserve(min);
|
2023-03-20 20:57:54 +00:00
|
|
|
|
|
|
|
for (position, color) in points {
|
2023-03-28 20:58:02 +00:00
|
|
|
strip_positions.push(position.to_array());
|
|
|
|
strip_colors.push(color.as_linear_rgba_f32());
|
2023-03-20 20:57:54 +00:00
|
|
|
}
|
|
|
|
|
2023-03-28 20:58:02 +00:00
|
|
|
strip_positions.push([f32::NAN; 3]);
|
|
|
|
strip_colors.push([f32::NAN; 4]);
|
2023-03-20 20:57:54 +00:00
|
|
|
}
|
|
|
|
|
2023-07-31 19:14:52 +00:00
|
|
|
/// Draw a wireframe sphere in 3D made out of 3 circles around the axes.
|
|
|
|
///
|
|
|
|
/// This should be called for each frame the sphere needs to be rendered.
|
2023-03-28 20:58:02 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
|
|
|
/// # use bevy_gizmos::prelude::*;
|
|
|
|
/// # use bevy_render::prelude::*;
|
|
|
|
/// # use bevy_math::prelude::*;
|
|
|
|
/// fn system(mut gizmos: Gizmos) {
|
|
|
|
/// gizmos.sphere(Vec3::ZERO, Quat::IDENTITY, 1., Color::BLACK);
|
|
|
|
///
|
|
|
|
/// // Each circle has 32 line-segments by default.
|
|
|
|
/// // You may want to increase this for larger spheres.
|
|
|
|
/// gizmos
|
|
|
|
/// .sphere(Vec3::ZERO, Quat::IDENTITY, 5., Color::BLACK)
|
|
|
|
/// .circle_segments(64);
|
|
|
|
/// }
|
|
|
|
/// # bevy_ecs::system::assert_is_system(system);
|
|
|
|
/// ```
|
2023-03-20 20:57:54 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn sphere(
|
|
|
|
&mut self,
|
|
|
|
position: Vec3,
|
|
|
|
rotation: Quat,
|
|
|
|
radius: f32,
|
|
|
|
color: Color,
|
2023-03-28 20:58:02 +00:00
|
|
|
) -> SphereBuilder<'_, 's> {
|
2023-03-20 20:57:54 +00:00
|
|
|
SphereBuilder {
|
2023-03-28 20:58:02 +00:00
|
|
|
gizmos: self,
|
2023-03-20 20:57:54 +00:00
|
|
|
position,
|
|
|
|
rotation,
|
|
|
|
radius,
|
|
|
|
color,
|
|
|
|
circle_segments: DEFAULT_CIRCLE_SEGMENTS,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-31 19:14:52 +00:00
|
|
|
/// Draw a wireframe rectangle in 3D.
|
|
|
|
///
|
|
|
|
/// This should be called for each frame the rectangle needs to be rendered.
|
2023-03-28 20:58:02 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
|
|
|
/// # use bevy_gizmos::prelude::*;
|
|
|
|
/// # use bevy_render::prelude::*;
|
|
|
|
/// # use bevy_math::prelude::*;
|
|
|
|
/// fn system(mut gizmos: Gizmos) {
|
|
|
|
/// gizmos.rect(Vec3::ZERO, Quat::IDENTITY, Vec2::ONE, Color::GREEN);
|
|
|
|
/// }
|
|
|
|
/// # bevy_ecs::system::assert_is_system(system);
|
|
|
|
/// ```
|
2023-03-20 20:57:54 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn rect(&mut self, position: Vec3, rotation: Quat, size: Vec2, color: Color) {
|
|
|
|
let [tl, tr, br, bl] = rect_inner(size).map(|vec2| position + rotation * vec2.extend(0.));
|
|
|
|
self.linestrip([tl, tr, br, bl, tl], color);
|
|
|
|
}
|
|
|
|
|
2023-07-31 19:14:52 +00:00
|
|
|
/// Draw a wireframe cube in 3D.
|
|
|
|
///
|
|
|
|
/// This should be called for each frame the cube needs to be rendered.
|
2023-03-28 20:58:02 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
|
|
|
/// # use bevy_gizmos::prelude::*;
|
|
|
|
/// # use bevy_render::prelude::*;
|
2023-04-24 15:23:06 +00:00
|
|
|
/// # use bevy_transform::prelude::*;
|
2023-03-28 20:58:02 +00:00
|
|
|
/// fn system(mut gizmos: Gizmos) {
|
2023-04-24 15:23:06 +00:00
|
|
|
/// gizmos.cuboid(Transform::IDENTITY, Color::GREEN);
|
2023-03-28 20:58:02 +00:00
|
|
|
/// }
|
|
|
|
/// # bevy_ecs::system::assert_is_system(system);
|
|
|
|
/// ```
|
2023-03-20 20:57:54 +00:00
|
|
|
#[inline]
|
2023-04-24 15:23:06 +00:00
|
|
|
pub fn cuboid(&mut self, transform: impl TransformPoint, color: Color) {
|
|
|
|
let rect = rect_inner(Vec2::ONE);
|
2023-03-20 20:57:54 +00:00
|
|
|
// Front
|
2023-04-24 15:23:06 +00:00
|
|
|
let [tlf, trf, brf, blf] = rect.map(|vec2| transform.transform_point(vec2.extend(0.5)));
|
2023-03-20 20:57:54 +00:00
|
|
|
// Back
|
2023-04-24 15:23:06 +00:00
|
|
|
let [tlb, trb, brb, blb] = rect.map(|vec2| transform.transform_point(vec2.extend(-0.5)));
|
|
|
|
|
|
|
|
let strip_positions = [
|
|
|
|
tlf, trf, brf, blf, tlf, // Front
|
|
|
|
tlb, trb, brb, blb, tlb, // Back
|
|
|
|
];
|
|
|
|
self.linestrip(strip_positions, color);
|
2023-03-20 20:57:54 +00:00
|
|
|
|
2023-04-24 15:23:06 +00:00
|
|
|
let list_positions = [
|
|
|
|
trf, trb, brf, brb, blf, blb, // Front to back
|
2023-03-20 20:57:54 +00:00
|
|
|
];
|
2023-04-24 15:23:06 +00:00
|
|
|
self.extend_list_positions(list_positions);
|
|
|
|
self.add_list_color(color, 6);
|
2023-03-20 20:57:54 +00:00
|
|
|
}
|
|
|
|
|
2023-07-31 19:14:52 +00:00
|
|
|
/// Draw a line in 2D from `start` to `end`.
|
|
|
|
///
|
|
|
|
/// This should be called for each frame the line needs to be rendered.
|
2023-03-28 20:58:02 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
|
|
|
/// # use bevy_gizmos::prelude::*;
|
|
|
|
/// # use bevy_render::prelude::*;
|
|
|
|
/// # use bevy_math::prelude::*;
|
|
|
|
/// fn system(mut gizmos: Gizmos) {
|
|
|
|
/// gizmos.line_2d(Vec2::ZERO, Vec2::X, Color::GREEN);
|
|
|
|
/// }
|
|
|
|
/// # bevy_ecs::system::assert_is_system(system);
|
|
|
|
/// ```
|
2023-03-20 20:57:54 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn line_2d(&mut self, start: Vec2, end: Vec2, color: Color) {
|
|
|
|
self.line(start.extend(0.), end.extend(0.), color);
|
|
|
|
}
|
|
|
|
|
2023-07-31 19:14:52 +00:00
|
|
|
/// Draw a line in 2D with a color gradient from `start` to `end`.
|
|
|
|
///
|
|
|
|
/// This should be called for each frame the line needs to be rendered.
|
2023-03-28 20:58:02 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
|
|
|
/// # use bevy_gizmos::prelude::*;
|
|
|
|
/// # use bevy_render::prelude::*;
|
|
|
|
/// # use bevy_math::prelude::*;
|
|
|
|
/// fn system(mut gizmos: Gizmos) {
|
|
|
|
/// gizmos.line_gradient_2d(Vec2::ZERO, Vec2::X, Color::GREEN, Color::RED);
|
|
|
|
/// }
|
|
|
|
/// # bevy_ecs::system::assert_is_system(system);
|
|
|
|
/// ```
|
2023-03-20 20:57:54 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn line_gradient_2d(
|
|
|
|
&mut self,
|
|
|
|
start: Vec2,
|
|
|
|
end: Vec2,
|
|
|
|
start_color: Color,
|
|
|
|
end_color: Color,
|
|
|
|
) {
|
|
|
|
self.line_gradient(start.extend(0.), end.extend(0.), start_color, end_color);
|
|
|
|
}
|
|
|
|
|
2023-07-31 19:14:52 +00:00
|
|
|
/// Draw a line in 2D made of straight segments between the points.
|
|
|
|
///
|
|
|
|
/// This should be called for each frame the line needs to be rendered.
|
2023-03-28 20:58:02 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
|
|
|
/// # use bevy_gizmos::prelude::*;
|
|
|
|
/// # use bevy_render::prelude::*;
|
|
|
|
/// # use bevy_math::prelude::*;
|
|
|
|
/// fn system(mut gizmos: Gizmos) {
|
|
|
|
/// gizmos.linestrip_2d([Vec2::ZERO, Vec2::X, Vec2::Y], Color::GREEN);
|
|
|
|
/// }
|
|
|
|
/// # bevy_ecs::system::assert_is_system(system);
|
|
|
|
/// ```
|
2023-03-20 20:57:54 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn linestrip_2d(&mut self, positions: impl IntoIterator<Item = Vec2>, color: Color) {
|
|
|
|
self.linestrip(positions.into_iter().map(|vec2| vec2.extend(0.)), color);
|
|
|
|
}
|
|
|
|
|
2023-07-31 19:14:52 +00:00
|
|
|
/// Draw a line in 2D made of straight segments between the points, with a color gradient.
|
|
|
|
///
|
|
|
|
/// This should be called for each frame the line needs to be rendered.
|
2023-03-28 20:58:02 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
|
|
|
/// # use bevy_gizmos::prelude::*;
|
|
|
|
/// # use bevy_render::prelude::*;
|
|
|
|
/// # use bevy_math::prelude::*;
|
|
|
|
/// fn system(mut gizmos: Gizmos) {
|
|
|
|
/// gizmos.linestrip_gradient_2d([
|
|
|
|
/// (Vec2::ZERO, Color::GREEN),
|
|
|
|
/// (Vec2::X, Color::RED),
|
|
|
|
/// (Vec2::Y, Color::BLUE)
|
|
|
|
/// ]);
|
|
|
|
/// }
|
|
|
|
/// # bevy_ecs::system::assert_is_system(system);
|
|
|
|
/// ```
|
2023-03-20 20:57:54 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn linestrip_gradient_2d(&mut self, positions: impl IntoIterator<Item = (Vec2, Color)>) {
|
|
|
|
self.linestrip_gradient(
|
|
|
|
positions
|
|
|
|
.into_iter()
|
|
|
|
.map(|(vec2, color)| (vec2.extend(0.), color)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-07-31 19:14:52 +00:00
|
|
|
/// Draw a line in 2D from `start` to `start + vector`.
|
|
|
|
///
|
|
|
|
/// This should be called for each frame the line needs to be rendered.
|
2023-03-28 20:58:02 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
|
|
|
/// # use bevy_gizmos::prelude::*;
|
|
|
|
/// # use bevy_render::prelude::*;
|
|
|
|
/// # use bevy_math::prelude::*;
|
|
|
|
/// fn system(mut gizmos: Gizmos) {
|
|
|
|
/// gizmos.ray_2d(Vec2::Y, Vec2::X, Color::GREEN);
|
|
|
|
/// }
|
|
|
|
/// # bevy_ecs::system::assert_is_system(system);
|
|
|
|
/// ```
|
2023-03-20 20:57:54 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn ray_2d(&mut self, start: Vec2, vector: Vec2, color: Color) {
|
|
|
|
self.line_2d(start, start + vector, color);
|
|
|
|
}
|
|
|
|
|
2023-07-31 19:14:52 +00:00
|
|
|
/// Draw a line in 2D with a color gradient from `start` to `start + vector`.
|
|
|
|
///
|
|
|
|
/// This should be called for each frame the line needs to be rendered.
|
2023-03-28 20:58:02 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
|
|
|
/// # use bevy_gizmos::prelude::*;
|
|
|
|
/// # use bevy_render::prelude::*;
|
|
|
|
/// # use bevy_math::prelude::*;
|
|
|
|
/// fn system(mut gizmos: Gizmos) {
|
|
|
|
/// gizmos.line_gradient(Vec3::Y, Vec3::X, Color::GREEN, Color::RED);
|
|
|
|
/// }
|
|
|
|
/// # bevy_ecs::system::assert_is_system(system);
|
|
|
|
/// ```
|
2023-03-20 20:57:54 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn ray_gradient_2d(
|
|
|
|
&mut self,
|
|
|
|
start: Vec2,
|
|
|
|
vector: Vec2,
|
|
|
|
start_color: Color,
|
|
|
|
end_color: Color,
|
|
|
|
) {
|
|
|
|
self.line_gradient_2d(start, start + vector, start_color, end_color);
|
|
|
|
}
|
|
|
|
|
2023-07-31 19:14:52 +00:00
|
|
|
/// Draw a wireframe rectangle in 2D.
|
|
|
|
///
|
|
|
|
/// This should be called for each frame the rectangle needs to be rendered.
|
2023-03-28 20:58:02 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
|
|
|
/// # use bevy_gizmos::prelude::*;
|
|
|
|
/// # use bevy_render::prelude::*;
|
|
|
|
/// # use bevy_math::prelude::*;
|
|
|
|
/// fn system(mut gizmos: Gizmos) {
|
|
|
|
/// gizmos.rect_2d(Vec2::ZERO, 0., Vec2::ONE, Color::GREEN);
|
|
|
|
/// }
|
|
|
|
/// # bevy_ecs::system::assert_is_system(system);
|
|
|
|
/// ```
|
2023-03-20 20:57:54 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn rect_2d(&mut self, position: Vec2, rotation: f32, size: Vec2, color: Color) {
|
|
|
|
let rotation = Mat2::from_angle(rotation);
|
|
|
|
let [tl, tr, br, bl] = rect_inner(size).map(|vec2| position + rotation * vec2);
|
|
|
|
self.linestrip_2d([tl, tr, br, bl, tl], color);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn extend_list_positions(&mut self, positions: impl IntoIterator<Item = Vec3>) {
|
2023-03-28 20:58:02 +00:00
|
|
|
self.buffer
|
|
|
|
.list_positions
|
2023-03-20 20:57:54 +00:00
|
|
|
.extend(positions.into_iter().map(|vec3| vec3.to_array()));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn extend_list_colors(&mut self, colors: impl IntoIterator<Item = Color>) {
|
2023-03-28 20:58:02 +00:00
|
|
|
self.buffer
|
|
|
|
.list_colors
|
2023-03-20 20:57:54 +00:00
|
|
|
.extend(colors.into_iter().map(|color| color.as_linear_rgba_f32()));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn add_list_color(&mut self, color: Color, count: usize) {
|
2023-03-28 20:58:02 +00:00
|
|
|
self.buffer
|
|
|
|
.list_colors
|
2023-03-20 20:57:54 +00:00
|
|
|
.extend(iter::repeat(color.as_linear_rgba_f32()).take(count));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn extend_strip_positions(&mut self, positions: impl IntoIterator<Item = Vec3>) {
|
2023-03-28 20:58:02 +00:00
|
|
|
self.buffer.strip_positions.extend(
|
2023-03-20 20:57:54 +00:00
|
|
|
positions
|
|
|
|
.into_iter()
|
|
|
|
.map(|vec3| vec3.to_array())
|
|
|
|
.chain(iter::once([f32::NAN; 3])),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-28 20:58:02 +00:00
|
|
|
/// A builder returned by [`Gizmos::sphere`].
|
|
|
|
pub struct SphereBuilder<'a, 's> {
|
|
|
|
gizmos: &'a mut Gizmos<'s>,
|
2023-03-20 20:57:54 +00:00
|
|
|
position: Vec3,
|
|
|
|
rotation: Quat,
|
|
|
|
radius: f32,
|
|
|
|
color: Color,
|
|
|
|
circle_segments: usize,
|
|
|
|
}
|
|
|
|
|
2023-03-28 20:58:02 +00:00
|
|
|
impl SphereBuilder<'_, '_> {
|
2023-07-10 00:11:51 +00:00
|
|
|
/// Set the number of line-segments per circle for this sphere.
|
2023-03-20 20:57:54 +00:00
|
|
|
pub fn circle_segments(mut self, segments: usize) -> Self {
|
|
|
|
self.circle_segments = segments;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-28 20:58:02 +00:00
|
|
|
impl Drop for SphereBuilder<'_, '_> {
|
2023-03-20 20:57:54 +00:00
|
|
|
fn drop(&mut self) {
|
|
|
|
for axis in Vec3::AXES {
|
2023-03-28 20:58:02 +00:00
|
|
|
self.gizmos
|
2023-03-20 20:57:54 +00:00
|
|
|
.circle(self.position, self.rotation * axis, self.radius, self.color)
|
|
|
|
.segments(self.circle_segments);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn rect_inner(size: Vec2) -> [Vec2; 4] {
|
|
|
|
let half_size = size / 2.;
|
|
|
|
let tl = Vec2::new(-half_size.x, half_size.y);
|
|
|
|
let tr = Vec2::new(half_size.x, half_size.y);
|
|
|
|
let bl = Vec2::new(-half_size.x, -half_size.y);
|
|
|
|
let br = Vec2::new(half_size.x, -half_size.y);
|
|
|
|
[tl, tr, br, bl]
|
|
|
|
}
|