mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Parallelogram: Fix implementations of isEmpty and operator-=
Previously, isEmpty sometimes incorrectly returned true for non-empty parallelograms. operator-= called itself, leading to infinite recursion.
This commit is contained in:
parent
83dcaf3c39
commit
44a04370a9
37 changed files with 177 additions and 3 deletions
|
|
@ -1840,6 +1840,7 @@ add_library( ${BINARY_NAME}
|
|||
"../../../../../modules/juce_graphics/geometry/juce_EdgeTable.h"
|
||||
"../../../../../modules/juce_graphics/geometry/juce_Line.h"
|
||||
"../../../../../modules/juce_graphics/geometry/juce_Parallelogram.h"
|
||||
"../../../../../modules/juce_graphics/geometry/juce_Parallelogram_test.cpp"
|
||||
"../../../../../modules/juce_graphics/geometry/juce_Path.cpp"
|
||||
"../../../../../modules/juce_graphics/geometry/juce_Path.h"
|
||||
"../../../../../modules/juce_graphics/geometry/juce_PathIterator.cpp"
|
||||
|
|
@ -4336,6 +4337,7 @@ set_source_files_properties(
|
|||
"../../../../../modules/juce_graphics/geometry/juce_EdgeTable.h"
|
||||
"../../../../../modules/juce_graphics/geometry/juce_Line.h"
|
||||
"../../../../../modules/juce_graphics/geometry/juce_Parallelogram.h"
|
||||
"../../../../../modules/juce_graphics/geometry/juce_Parallelogram_test.cpp"
|
||||
"../../../../../modules/juce_graphics/geometry/juce_Path.cpp"
|
||||
"../../../../../modules/juce_graphics/geometry/juce_Path.h"
|
||||
"../../../../../modules/juce_graphics/geometry/juce_PathIterator.cpp"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue