Skip to content

Commit

Permalink
add no_run for rerun related test
Browse files Browse the repository at this point in the history
  • Loading branch information
makeecat committed Sep 2, 2024
1 parent 3162b68 commit 2341ad5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2074,7 +2074,7 @@ impl Camera {
/// # Errors
/// * If the data cannot be logged to the recording stream
/// # Example
/// ```
/// ```no_run
/// use peng_quad::{Quadrotor, log_data};
/// use nalgebra::Vector3;
/// let rec = rerun::RecordingStreamBuilder::new("peng").connect().unwrap();
Expand Down Expand Up @@ -2138,7 +2138,7 @@ pub fn log_data(
/// # Errors
/// * If the data cannot be logged to the recording stream
/// # Example
/// ```
/// ```no_run
/// use peng_quad::{Maze, log_maze_tube};
/// use rerun::RecordingStreamBuilder;
/// let rec = rerun::RecordingStreamBuilder::new("log.rerun").connect().unwrap();
Expand Down Expand Up @@ -2171,7 +2171,7 @@ pub fn log_maze_tube(rec: &rerun::RecordingStream, maze: &Maze) -> Result<(), Si
/// # Errors
/// * If the data cannot be logged to the recording stream
/// # Example
/// ```
/// ```no_run
/// use peng_quad::{Maze, log_maze_obstacles};
/// let rec = rerun::RecordingStreamBuilder::new("log.rerun").connect().unwrap();
/// let mut maze = Maze::new([-1.0, -1.0, -1.0], [1.0, 1.0, 1.0], 5, [0.1, 0.1, 0.1], [0.1, 0.5]);
Expand Down Expand Up @@ -2262,7 +2262,7 @@ impl Trajectory {
/// # Errors
/// * If the data cannot be logged to the recording stream
/// # Example
/// ```
/// ```no_run
/// use peng_quad::{Trajectory, log_trajectory};
/// use nalgebra::Vector3;
/// let rec = rerun::RecordingStreamBuilder::new("log.rerun").connect().unwrap();
Expand Down Expand Up @@ -2293,7 +2293,7 @@ pub fn log_trajectory(
/// # Errors
/// * If the data cannot be logged to the recording stream
/// # Example
/// ```
/// ```no_run
/// use peng_quad::log_mesh;
/// let rec = rerun::RecordingStreamBuilder::new("log.rerun").connect().unwrap();
/// log_mesh(&rec, 10, 0.1).unwrap();
Expand Down Expand Up @@ -2343,7 +2343,7 @@ pub fn log_mesh(
/// # Errors
/// * If the data cannot be logged to the recording stream
/// # Example
/// ```
/// ```no_run
/// use peng_quad::log_depth_image;
/// let rec = rerun::RecordingStreamBuilder::new("log.rerun").connect().unwrap();
/// let depth_image = vec![0.0; 640 * 480];
Expand Down

0 comments on commit 2341ad5

Please sign in to comment.