Skip to content

Commit

Permalink
import cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sowbug committed Sep 24, 2023
1 parent 0908948 commit 0df54e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 19 deletions.
5 changes: 1 addition & 4 deletions entities/src/controllers/mod.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
// Copyright (c) 2023 Mike Tsao. All rights reserved.

use eframe::egui::Ui;
use ensnare_core::{midi::prelude::*, prelude::*, temp_impls::prelude::*, traits::prelude::*};
use ensnare_proc_macros::{Control, IsController, Uid};
use ensnare_core::midi::prelude::*;
use serde::{Deserialize, Serialize};
use std::ops::Range;

pub use calculator::Calculator;
pub use control_trip::{ControlPath, ControlStep};
Expand Down
3 changes: 0 additions & 3 deletions orchestration/src/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,11 @@
//! The [helpers](crate::helpers) module contains structs and methods that make
//! it easier to use the Groove engine.
// use crate::orchestrator::Performance;
use anyhow::anyhow;
use cpal::{
traits::{DeviceTrait, HostTrait},
SupportedStreamConfig,
};
use ensnare_core::prelude::*;
use std::path::PathBuf;

pub struct IOHelper {}
impl IOHelper {
Expand Down
14 changes: 2 additions & 12 deletions toys/src/instruments.rs
Original file line number Diff line number Diff line change
@@ -1,25 +1,15 @@
// Copyright (c) 2023 Mike Tsao. All rights reserved.

use eframe::{
egui::{self, Layout, Ui},
emath::Align,
epaint::{pos2, Color32, Rect, Rounding, Stroke},
};
use eframe::egui::{self, Ui};
use ensnare_core::{
generators::{Envelope, EnvelopeParams, Oscillator, OscillatorParams, Waveform},
instruments::Synthesizer,
midi::prelude::*,
modulators::{Dca, DcaParams},
prelude::*,
traits::{prelude::*, GeneratesEnvelope},
voices::{VoiceCount, VoiceStore},
};
use ensnare_proc_macros::{Control, IsInstrument, Params, Uid};
use serde::{Deserialize, Serialize};
use std::{
fmt::Debug,
sync::{Arc, Mutex},
};
use std::fmt::Debug;

/// Another [IsInstrument](groove_core::traits::IsInstrument) that was designed
/// for black-box debugging.
Expand Down

0 comments on commit 0df54e4

Please sign in to comment.