1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
/*
* Copyright (C) 2020 Linux Studio Plugins Project <https://lsp-plug.in/>
* (C) 2020 Vladimir Sadovnikov <sadko4u@gmail.com>
*
* This file is part of lsp-tk-lib
* Created on: 26 авг. 2020 г.
*
* lsp-tk-lib is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* lsp-tk-lib is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with lsp-tk-lib. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef LSP_PLUG_IN_TK_HELPERS_GRAPHICS_H_
#define LSP_PLUG_IN_TK_HELPERS_GRAPHICS_H_
#include <lsp-plug.in/tk/tk.h>
namespace lsp
{
namespace tk
{
bool line2d_equation
(
float x1, float y1,
float x2, float y2,
float &a, float &b, float &c
);
bool line2d_delta_equation
(
float x1, float y,
float dx, float dy,
float &a, float &b, float &c
);
bool line2d_equation
(
float dx, float dy,
float &a, float &b, float &c
);
bool line2d_intersection
(
float a1, float b1, float c1,
float a2, float b2, float c2,
float &x, float &y
);
float distance2d(float x1, float y1, float x2, float y2);
float scalar_product2d(float x1, float y1, float x2, float y2);
float vector_product2d(float x1, float y1, float x2, float y2);
float get_angle_2d
(
float x0, float y0, // Coordinates of center
float x, float y // Coordinates of dot
);
bool clip_line2d_vec(
float dx, float dy, // Line direction
float lc, float rc, float tc, float bc, // Corners from left, right, top, bottom
float error, // Allowed error
float &cx1, float &cy1, float &cx2, float &cy2 // Results
);
bool clip_line2d_eq(
float a, float b, float c, // Line equation
float lc, float rc, float tc, float bc, // Corners from left, right, top, bottom
float error, // Allowed error
float &cx1, float &cy1, float &cx2, float &cy2 // Results
);
bool clip_line2d_coord(
float x1, float x2, float y1, float y2, // Coordinates of two points laying on line
float lc, float rc, float tc, float bc, // Corners from left, right, top, bottom
float error, // Allowed error
float &cx1, float &cy1, float &cx2, float &cy2 // Results
);
void locate_line2d(
float a, float b, float c, // Line equation
float px, float py, // Point of the line
float &ma, float &mb, float &mc // New equation
);
bool locate_line2d(
float dx, float dy, // Line equation
float px, float py, // Point of the line
float &ma, float &mb, float &mc // New equation
);
bool clip2d(
float x, float y, // Coordinates of point
float lc, float rc, float tc, float bc // Corners: left, right, top, bottom
);
}
}
#endif /* LSP_PLUG_IN_TK_HELPERS_GRAPHICS_H_ */
|