Skip to content

Commit 8a7cdad

Browse files
committed
UI refresh
1 parent 41d50c0 commit 8a7cdad

7 files changed

Lines changed: 629 additions & 727 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ChordCV Introduction video: https://www.youtube.com/watch?v=SSoJW4VzTp8
66
To install, just go to the plugin library (https://vcvrack.com/plugins) search for "Aaron Static" and click the +Add button
77

88
## ChordCV
9-
![ChordCV](https://i.imgur.com/pdB5wFX.png "ChordCV")
9+
![ChordCV](https://i.imgur.com/5TeI901.jpg "ChordCV")
1010

1111
Generates a chord and outputs up to 4 x 1v/oct voltages and a polyphonic 1v/oct signal separately.
1212

@@ -25,7 +25,7 @@ The first 1v/oct output (and first poly channel) will always be the bass note, i
2525
If the chord is a triad (3 notes), the 4th 1v/oct output will be the bass note + 1 octave for convenience. The polyphonic output will not include this higher note.
2626

2727
## ScaleCV
28-
![ChordCV](https://i.imgur.com/z52Qqil.jpg "ScaleCV")
28+
![ChordCV](https://i.imgur.com/6X5hZbV.jpg "ScaleCV")
2929

3030
Generates a scale and outputs a polyphonic 1v/oct signal with 7 notes + quantizes the 4 monophonic inputs to that scale if provided.
3131

@@ -34,7 +34,7 @@ Generates a scale and outputs a polyphonic 1v/oct signal with 7 notes + quantize
3434
* **Quantizers**: 4 Quantizers that will quantize a monophonic input to the selected scale
3535

3636
## RandomNoteCV
37-
![RandomNoteCV](https://i.imgur.com/5rybov5.jpg "RandomNoteCV")
37+
![RandomNoteCV](https://i.imgur.com/xK91S79.jpg "RandomNoteCV")
3838

3939
Generates a random note when triggered within the selected range and outputs a 1v/oct signal. If a polyphonic input is connected the note is selected from the provided notes (they are quantized).
4040

res/ChordCV.svg

Lines changed: 263 additions & 496 deletions
Loading

res/RandomNoteCV.svg

Lines changed: 170 additions & 118 deletions
Loading

res/ScaleCV.svg

Lines changed: 189 additions & 106 deletions
Loading

src/ChordCV.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ struct ChordCVWidget : ModuleWidget {
113113
ChordDisplayWidget(Vec _pos, Vec _size, ChordCV* _module) {
114114
box.size = _size;
115115
box.pos = _pos.minus(_size.div(2));
116-
module = _module;
116+
module = _module;
117117
}
118118

119119
void draw(const DrawArgs &args) override {
@@ -181,7 +181,7 @@ struct ChordCVWidget : ModuleWidget {
181181
addOutput(createOutputCentered<PJ301MPort>(Vec(centerX + offsetX, posY2), module, ChordCV::CV_OUTPUTS + 2));
182182
addOutput(createOutputCentered<PJ301MPort>(Vec(centerX + offsetX, posY2 + spacingY2), module, ChordCV::CV_OUTPUTS + 3));
183183

184-
addOutput(createOutputCentered<PJ301MPort>(Vec(centerX, 330), module, ChordCV::POLY_OUTPUT));
184+
addOutput(createOutputCentered<PJ301MPort>(Vec(centerX, 332), module, ChordCV::POLY_OUTPUT));
185185
}
186186
};
187187

src/RandomNoteCV.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ struct RandomNoteCVWidget : ModuleWidget {
176176
addParam(createParamCentered<Rogan2PWhite>(Vec(centerX,245), module, RandomNoteCV::RANGE_PARAM));
177177
addInput(createInputCentered<PJ301MPort>(Vec(centerX - offsetXL, 245), module, RandomNoteCV::RANGE_INPUT));
178178

179-
addOutput(createOutputCentered<PJ301MPort>(Vec(centerX, 330), module, RandomNoteCV::NOTE_OUTPUT));
179+
addOutput(createOutputCentered<PJ301MPort>(Vec(centerX, 332), module, RandomNoteCV::NOTE_OUTPUT));
180180
}
181181
};
182182

src/ScaleCV.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ struct ScaleCVWidget : ModuleWidget {
169169
addOutput(createOutputCentered<PJ301MPort>(Vec(centerX + offsetX, posY2), module, ScaleCV::QUANTIZER_OUTPUTS + 2));
170170
addOutput(createOutputCentered<PJ301MPort>(Vec(centerX + offsetX, posY3), module, ScaleCV::QUANTIZER_OUTPUTS + 3));
171171

172-
addOutput(createOutputCentered<PJ301MPort>(Vec(centerX, 330), module, ScaleCV::POLY_OUTPUT));
172+
addOutput(createOutputCentered<PJ301MPort>(Vec(centerX, 332), module, ScaleCV::POLY_OUTPUT));
173173
}
174174
};
175175

0 commit comments

Comments
 (0)