add LICENSE, update README, update source

This commit is contained in:
Armin 2026-08-14 01:33:20 +02:00
commit e0177ed26f
9 changed files with 395 additions and 53 deletions

View file

@ -56,14 +56,5 @@ public:
startAngle, angle, thickness);
g.setColour (getTeal());
g.strokePath (value, juce::PathStrokeType (thickness));
// Pointer line.
juce::Path pointer;
const float pointerLen = radius * 0.78f;
pointer.addLineSegment (juce::Line<float> (centre.x, centre.y,
centre.x + std::sin (angle) * pointerLen,
centre.y - std::cos (angle) * pointerLen), 2.0f);
g.setColour (juce::Colours::white);
g.strokePath (pointer, juce::PathStrokeType (2.5f));
}
};