This is to make room in the api for quadratic curves. In detail: - Replace GSK_PATH_CURVE by _CUBIC - Rename gsk_path_builder_curve_to to _cubic_to - Replace GSK_PATH_FOREACH_ALLOW_CURVE with _CUBIC - Replace GskCurveCurve with GskCubicCurve
135 lines
4.2 KiB
C
135 lines
4.2 KiB
C
/*
|
|
* Copyright © 2020 Benjamin Otte
|
|
*
|
|
* This library 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 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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 this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Authors: Benjamin Otte <otte@gnome.org>
|
|
*/
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include "gsk/gskcurveprivate.h"
|
|
|
|
static gboolean
|
|
measure_segment (const graphene_point_t *from,
|
|
const graphene_point_t *to,
|
|
float from_t,
|
|
float to_t,
|
|
GskCurveLineReason reason,
|
|
gpointer data)
|
|
{
|
|
float *length = data;
|
|
|
|
*length += graphene_point_distance (from, to, NULL, NULL);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static float
|
|
measure_length (const GskCurve *curve)
|
|
{
|
|
float result = 0;
|
|
|
|
gsk_curve_decompose (curve, 0.5, measure_segment, &result);
|
|
|
|
return result;
|
|
}
|
|
|
|
/* This is a pretty nasty conic that makes it obvious that split()
|
|
* does not respect the progress values, so split() twice with
|
|
* scaled factor won't work.
|
|
*/
|
|
static void
|
|
test_conic_segment (void)
|
|
{
|
|
GskCurve c, s, e, m;
|
|
graphene_point_t pts[4] = {
|
|
GRAPHENE_POINT_INIT (-1856.131591796875, 46.217609405517578125),
|
|
GRAPHENE_POINT_INIT (-1555.9866943359375, 966.0810546875),
|
|
GRAPHENE_POINT_INIT (98.94945526123046875, 0),
|
|
GRAPHENE_POINT_INIT (-1471.33154296875, 526.701171875)
|
|
};
|
|
float start = 0.02222645096480846405029296875;
|
|
float end = 0.982032716274261474609375;
|
|
|
|
gsk_curve_init (&c, gsk_pathop_encode (GSK_PATH_CONIC, pts));
|
|
|
|
gsk_curve_split (&c, start, &s, NULL);
|
|
gsk_curve_segment (&c, start, end, &m);
|
|
gsk_curve_split (&c, end, NULL, &e);
|
|
|
|
g_assert_cmpfloat_with_epsilon (measure_length (&c), measure_length (&s) + measure_length (&m) + measure_length (&e), 0.03125);
|
|
}
|
|
|
|
static void
|
|
test_curve_tangents (void)
|
|
{
|
|
GskCurve c;
|
|
graphene_point_t p[4];
|
|
graphene_vec2_t t;
|
|
|
|
graphene_point_init (&p[0], 0, 0);
|
|
graphene_point_init (&p[1], 100, 0);
|
|
gsk_curve_init (&c, gsk_pathop_encode (GSK_PATH_LINE, p));
|
|
|
|
gsk_curve_get_start_tangent (&c, &t);
|
|
g_assert_true (graphene_vec2_near (&t, graphene_vec2_x_axis (), 0.0001));
|
|
gsk_curve_get_end_tangent (&c, &t);
|
|
g_assert_true (graphene_vec2_near (&t, graphene_vec2_x_axis (), 0.0001));
|
|
|
|
|
|
graphene_point_init (&p[0], 0, 0);
|
|
graphene_point_init (&p[1], 0, 100);
|
|
gsk_curve_init (&c, gsk_pathop_encode (GSK_PATH_LINE, p));
|
|
|
|
gsk_curve_get_start_tangent (&c, &t);
|
|
g_assert_true (graphene_vec2_near (&t, graphene_vec2_y_axis (), 0.0001));
|
|
gsk_curve_get_end_tangent (&c, &t);
|
|
g_assert_true (graphene_vec2_near (&t, graphene_vec2_y_axis (), 0.0001));
|
|
|
|
graphene_point_init (&p[0], 0, 0);
|
|
graphene_point_init (&p[1], 100, 0);
|
|
p[2] = GRAPHENE_POINT_INIT (g_test_rand_double_range (0, 20), 0);
|
|
graphene_point_init (&p[3], 100, 100);
|
|
gsk_curve_init (&c, gsk_pathop_encode (GSK_PATH_CONIC, p));
|
|
|
|
gsk_curve_get_start_tangent (&c, &t);
|
|
g_assert_true (graphene_vec2_near (&t, graphene_vec2_x_axis (), 0.0001));
|
|
gsk_curve_get_end_tangent (&c, &t);
|
|
g_assert_true (graphene_vec2_near (&t, graphene_vec2_y_axis (), 0.0001));
|
|
|
|
graphene_point_init (&p[0], 0, 0);
|
|
graphene_point_init (&p[1], 50, 0);
|
|
graphene_point_init (&p[2], 100, 50);
|
|
graphene_point_init (&p[3], 100, 100);
|
|
gsk_curve_init (&c, gsk_pathop_encode (GSK_PATH_CUBIC, p));
|
|
|
|
gsk_curve_get_start_tangent (&c, &t);
|
|
g_assert_true (graphene_vec2_near (&t, graphene_vec2_x_axis (), 0.0001));
|
|
gsk_curve_get_end_tangent (&c, &t);
|
|
g_assert_true (graphene_vec2_near (&t, graphene_vec2_y_axis (), 0.0001));
|
|
}
|
|
|
|
int
|
|
main (int argc,
|
|
char *argv[])
|
|
{
|
|
gtk_test_init (&argc, &argv, NULL);
|
|
|
|
g_test_add_func ("/curve/special/conic-segment", test_conic_segment);
|
|
g_test_add_func ("/curve/special/tangents", test_curve_tangents);
|
|
|
|
return g_test_run ();
|
|
}
|