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 = [ 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',

View file

@ -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'
] ]