mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-15 12:34:30 +00:00
utils: math functions moved from lib to utils
This commit is contained in:
parent
6ad4a0b180
commit
f0d8ab4274
8 changed files with 6 additions and 5 deletions
|
@ -11,14 +11,11 @@ endif
|
||||||
source_file = [
|
source_file = [
|
||||||
'tvgCanvasImpl.h',
|
'tvgCanvasImpl.h',
|
||||||
'tvgCommon.h',
|
'tvgCommon.h',
|
||||||
'tvgBezier.h',
|
|
||||||
'tvgBinaryDesc.h',
|
'tvgBinaryDesc.h',
|
||||||
'tvgFill.h',
|
'tvgFill.h',
|
||||||
'tvgFrameModule.h',
|
'tvgFrameModule.h',
|
||||||
'tvgLoader.h',
|
'tvgLoader.h',
|
||||||
'tvgLoadModule.h',
|
'tvgLoadModule.h',
|
||||||
'tvgLzw.h',
|
|
||||||
'tvgMath.h',
|
|
||||||
'tvgPictureImpl.h',
|
'tvgPictureImpl.h',
|
||||||
'tvgRender.h',
|
'tvgRender.h',
|
||||||
'tvgIteratorAccessor.h',
|
'tvgIteratorAccessor.h',
|
||||||
|
@ -28,13 +25,11 @@ source_file = [
|
||||||
'tvgTaskScheduler.h',
|
'tvgTaskScheduler.h',
|
||||||
'tvgAccessor.cpp',
|
'tvgAccessor.cpp',
|
||||||
'tvgAnimation.cpp',
|
'tvgAnimation.cpp',
|
||||||
'tvgBezier.cpp',
|
|
||||||
'tvgCanvas.cpp',
|
'tvgCanvas.cpp',
|
||||||
'tvgFill.cpp',
|
'tvgFill.cpp',
|
||||||
'tvgGlCanvas.cpp',
|
'tvgGlCanvas.cpp',
|
||||||
'tvgInitializer.cpp',
|
'tvgInitializer.cpp',
|
||||||
'tvgLinearGradient.cpp',
|
'tvgLinearGradient.cpp',
|
||||||
'tvgLzw.cpp',
|
|
||||||
'tvgLoader.cpp',
|
'tvgLoader.cpp',
|
||||||
'tvgPaint.cpp',
|
'tvgPaint.cpp',
|
||||||
'tvgPicture.cpp',
|
'tvgPicture.cpp',
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
source_file = [
|
source_file = [
|
||||||
|
'tvgArray.h',
|
||||||
|
'tvgBezier.h',
|
||||||
|
'tvgLzw.h',
|
||||||
|
'tvgMath.h',
|
||||||
'tvgStr.h',
|
'tvgStr.h',
|
||||||
|
'tvgBezier.cpp',
|
||||||
|
'tvgLzw.cpp',
|
||||||
'tvgStr.cpp'
|
'tvgStr.cpp'
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue