utils: math functions moved from lib to utils

This commit is contained in:
Mira Grudzinska 2023-08-03 01:04:22 +02:00 committed by Hermet Park
parent 6ad4a0b180
commit f0d8ab4274
8 changed files with 6 additions and 5 deletions

View file

@ -11,14 +11,11 @@ endif
source_file = [
'tvgCanvasImpl.h',
'tvgCommon.h',
'tvgBezier.h',
'tvgBinaryDesc.h',
'tvgFill.h',
'tvgFrameModule.h',
'tvgLoader.h',
'tvgLoadModule.h',
'tvgLzw.h',
'tvgMath.h',
'tvgPictureImpl.h',
'tvgRender.h',
'tvgIteratorAccessor.h',
@ -28,13 +25,11 @@ source_file = [
'tvgTaskScheduler.h',
'tvgAccessor.cpp',
'tvgAnimation.cpp',
'tvgBezier.cpp',
'tvgCanvas.cpp',
'tvgFill.cpp',
'tvgGlCanvas.cpp',
'tvgInitializer.cpp',
'tvgLinearGradient.cpp',
'tvgLzw.cpp',
'tvgLoader.cpp',
'tvgPaint.cpp',
'tvgPicture.cpp',

View file

@ -1,5 +1,11 @@
source_file = [
'tvgArray.h',
'tvgBezier.h',
'tvgLzw.h',
'tvgMath.h',
'tvgStr.h',
'tvgBezier.cpp',
'tvgLzw.cpp',
'tvgStr.cpp'
]