Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
v21.0.0-alpha.2
Browse files Browse the repository at this point in the history
  • Loading branch information
s5suzuki committed Jan 22, 2024
1 parent d60ccf8 commit 1189b77
Show file tree
Hide file tree
Showing 11 changed files with 6 additions and 137 deletions.
13 changes: 6 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "autd3-link-visualizer"
version = "21.0.0-alpha.1"
version = "21.0.0-alpha.2"
authors = ["shun suzuki <suzuki@hapis.k.u-tokyo.ac.jp>"]
edition = "2021"

Expand All @@ -11,8 +11,8 @@ readme = "README.md"
keywords = ["autd"]

[dependencies]
autd3-firmware-emulator = { version = "21.0.0-alpha.0", default-features = false }
autd3-driver = { version = "21.0.0-alpha.0", default-features = false }
autd3-firmware-emulator = { version = "21.0.0-alpha.2" }
autd3-driver = { version = "21.0.0-alpha.2" }
thiserror = "1.0.30"
pyo3 = { version = "0.20.0", features = ["abi3", "auto-initialize"], optional = true }
which = { version = "5.0.0", optional = true }
Expand All @@ -26,16 +26,15 @@ num-complex = "0.4.3"

[dev-dependencies]
anyhow = "1.0.75"
autd3 = { version = "21.0.0-alpha.0" }
autd3-gain-holo = { version = "21.0.0-alpha.0" }
autd3 = { version = "21.0.0-alpha.2" }
autd3-gain-holo = { version = "21.0.0-alpha.2" }
tokio = { version = "1.34.0", features = ["macros", "rt-multi-thread"] }

[features]
default = ["plotters", "rpitit"]
default = ["plotters"]
plotters = ["dep:plotters", "plotters-bitmap", "scarlet"]
python = ["pyo3", "which"]
gpu = ["vulkano", "vulkano-shaders"]
single_float = ["autd3-driver/single_float"]
all = ["plotters", "python", "gpu"]
rpitit = ["autd3-driver/rpitit", "autd3-firmware-emulator/rpitit"]
async-trait = ["autd3-driver/async-trait", "autd3-firmware-emulator/async-trait"]
13 changes: 0 additions & 13 deletions assets/shaders/pressure.comp
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
/*
* File: pressure.comp
* Project: shaders
* Created Date: 15/06/2023
* Author: Shun Suzuki
* -----
* Last Modified: 01/01/2024
* Modified By: Shun Suzuki (suzuki@hapis.k.u-tokyo.ac.jp)
* -----
* Copyright (c) 2023 Shun Suzuki. All rights reserved.
*
*/

#version 450 core

layout(local_size_x = 32, local_size_y = 1, local_size_z = 1) in;
Expand Down
13 changes: 0 additions & 13 deletions examples/main.rs
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
/*
* File: main.rs
* Project: examples
* Created Date: 11/12/2023
* Author: Shun Suzuki
* -----
* Last Modified: 01/01/2024
* Modified By: Shun Suzuki (suzuki@hapis.k.u-tokyo.ac.jp)
* -----
* Copyright (c) 2023 Shun Suzuki. All rights reserved.
*
*/

use std::path::Path;

use anyhow::Result;
Expand Down
13 changes: 0 additions & 13 deletions src/backend/mod.rs
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
/*
* File: mod.rs
* Project: backend
* Created Date: 16/07/2023
* Author: Shun Suzuki
* -----
* Last Modified: 06/11/2023
* Modified By: Shun Suzuki (suzuki@hapis.k.u-tokyo.ac.jp)
* -----
* Copyright (c) 2023 Shun Suzuki. All rights reserved.
*
*/

mod null;
#[cfg(feature = "plotters")]
mod plotters;
Expand Down
13 changes: 0 additions & 13 deletions src/backend/null.rs
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
/*
* File: null.rs
* Project: backend
* Created Date: 17/07/2023
* Author: Shun Suzuki
* -----
* Last Modified: 06/11/2023
* Modified By: Shun Suzuki (suzuki@hapis.k.u-tokyo.ac.jp)
* -----
* Copyright (c) 2023 Shun Suzuki. All rights reserved.
*
*/

use crate::Backend;

use autd3_driver::defined::float;
Expand Down
13 changes: 0 additions & 13 deletions src/backend/plotters.rs
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
/*
* File: plotters.rs
* Project: backend
* Created Date: 16/07/2023
* Author: Shun Suzuki
* -----
* Last Modified: 06/11/2023
* Modified By: Shun Suzuki (suzuki@hapis.k.u-tokyo.ac.jp)
* -----
* Copyright (c) 2023 Shun Suzuki. All rights reserved.
*
*/

use std::ffi::OsString;

use plotters::{coord::Shift, prelude::*};
Expand Down
13 changes: 0 additions & 13 deletions src/backend/python.rs
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
/*
* File: python.rs
* Project: src
* Created Date: 16/07/2023
* Author: Shun Suzuki
* -----
* Last Modified: 06/11/2023
* Modified By: Shun Suzuki (suzuki@hapis.k.u-tokyo.ac.jp)
* -----
* Copyright (c) 2023 Shun Suzuki. All rights reserved.
*
*/

use std::ffi::OsString;

use pyo3::prelude::*;
Expand Down
13 changes: 0 additions & 13 deletions src/colormap.rs
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
/*
* File: colormap.rs
* Project: src
* Created Date: 16/07/2023
* Author: Shun Suzuki
* -----
* Last Modified: 12/10/2023
* Modified By: Shun Suzuki (suzuki@hapis.k.u-tokyo.ac.jp)
* -----
* Copyright (c) 2023 Shun Suzuki. All rights reserved.
*
*/

use scarlet::colormap::ListedColorMap;

/// Colormap of jet in matplotlib
Expand Down
13 changes: 0 additions & 13 deletions src/error.rs
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
/*
* File: error.rs
* Project: src
* Created Date: 14/06/2023
* Author: Shun Suzuki
* -----
* Last Modified: 29/10/2023
* Modified By: Shun Suzuki (suzuki@hapis.k.u-tokyo.ac.jp)
* -----
* Copyright (c) 2023 Shun Suzuki. All rights reserved.
*
*/

use autd3_driver::error::AUTDInternalError;
use thiserror::Error;

Expand Down
13 changes: 0 additions & 13 deletions src/gpu.rs
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
/*
* File: gpu.rs
* Project: src
* Created Date: 15/06/2023
* Author: Shun Suzuki
* -----
* Last Modified: 09/01/2024
* Modified By: Shun Suzuki (suzuki@hapis.k.u-tokyo.ac.jp)
* -----
* Copyright (c) 2023 Shun Suzuki. All rights reserved.
*
*/

use std::sync::Arc;

use autd3_driver::{
Expand Down
13 changes: 0 additions & 13 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
/*
* File: lib.rs
* Project: src
* Created Date: 14/06/2023
* Author: Shun Suzuki
* -----
* Last Modified: 20/01/2024
* Modified By: Shun Suzuki (suzuki@hapis.k.u-tokyo.ac.jp)
* -----
* Copyright (c) 2023 Shun Suzuki. All rights reserved.
*
*/

mod error;

#[cfg(feature = "gpu")]
Expand Down

0 comments on commit 1189b77

Please sign in to comment.