mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-07 21:23:32 +00:00

just changed the size to another one for better showcase since 800x800 is not preferred by intel arc chipset. animations look stutter.
97 lines
No EOL
3 KiB
C++
97 lines
No EOL
3 KiB
C++
/*
|
|
* Copyright (c) 2024 - 2025 the ThorVG project. All rights reserved.
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
#define _USE_MATH_DEFINES
|
|
|
|
#include <cmath>
|
|
#include "Example.h"
|
|
|
|
/************************************************************************/
|
|
/* ThorVG Drawing Contents */
|
|
/************************************************************************/
|
|
|
|
struct UserExample : tvgexam::Example
|
|
{
|
|
tvg::Picture* picture = nullptr;
|
|
|
|
float deg2rad(float degree)
|
|
{
|
|
return degree * (float(M_PI) / 180.0f);
|
|
}
|
|
|
|
bool content(tvg::Canvas* canvas, uint32_t w, uint32_t h) override
|
|
{
|
|
if (!canvas) return false;
|
|
|
|
picture = tvg::Picture::gen();
|
|
|
|
if (!tvgexam::verify(picture->load(EXAMPLE_DIR"/image/scale.jpg"))) return false;
|
|
|
|
canvas->push(picture);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool update(tvg::Canvas* canvas, uint32_t elapsed) override
|
|
{
|
|
if (!canvas) return false;
|
|
|
|
tvg::Matrix m = {1.0f, 0.0f, 0.0f, 0.0f, 0.1f, 0.0f, 0.0f, 0.0f, 1.0f};
|
|
|
|
//center pivoting
|
|
m.e13 += 480;
|
|
m.e23 += 480;
|
|
|
|
//rotation
|
|
auto degree = tvgexam::progress(elapsed, 4.0f) * 360.0f;
|
|
auto radian = deg2rad(degree);
|
|
m.e11 = cosf(radian);
|
|
m.e12 = -sinf(radian);
|
|
m.e21 = sinf(radian);
|
|
m.e22 = cosf(radian);
|
|
|
|
//scaling
|
|
m.e11 *= 0.8f;
|
|
m.e21 *= 0.8f;
|
|
m.e22 *= 0.8f;
|
|
m.e12 *= 0.8f;
|
|
|
|
//center pivoting
|
|
m.e13 += (-400 * m.e11 + -400 * m.e12);
|
|
m.e23 += (-400 * m.e21 + -400 * m.e22);
|
|
|
|
picture->transform(m);
|
|
|
|
canvas->update();
|
|
|
|
return true;
|
|
}
|
|
};
|
|
|
|
|
|
/************************************************************************/
|
|
/* Entry Point */
|
|
/************************************************************************/
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
return tvgexam::main(new UserExample, argc, argv, true, 960 ,960);
|
|
} |