/* * Copyright © 2023 Red Hat, Inc. * * 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 . * * Authors: Matthias Clasen */ #pragma once #if !defined (__GSK_H_INSIDE__) && !defined (GTK_COMPILATION) #error "Only can be included directly." #endif #include G_BEGIN_DECLS #define GSK_TYPE_PATH_POINT (gsk_path_point_get_type ()) typedef struct _GskPathPoint GskPathPoint; G_GNUC_EXTENSION struct _GskPathPoint { /*< private >*/ union { struct { gsize contour; gsize idx; float t; }; gpointer padding[8]; graphene_vec4_t alignment; }; }; GDK_AVAILABLE_IN_4_14 GType gsk_path_point_get_type (void) G_GNUC_CONST; GDK_AVAILABLE_IN_4_14 GskPathPoint * gsk_path_point_copy (GskPathPoint *point); GDK_AVAILABLE_IN_4_14 void gsk_path_point_free (GskPathPoint *point); GDK_AVAILABLE_IN_4_14 gboolean gsk_path_point_equal (const GskPathPoint *point1, const GskPathPoint *point2) G_GNUC_PURE; GDK_AVAILABLE_IN_4_14 int gsk_path_point_compare (const GskPathPoint *point1, const GskPathPoint *point2) G_GNUC_PURE; GDK_AVAILABLE_IN_4_14 void gsk_path_point_get_position (const GskPathPoint *point, GskPath *path, graphene_point_t *position); GDK_AVAILABLE_IN_4_14 void gsk_path_point_get_tangent (const GskPathPoint *point, GskPath *path, GskPathDirection direction, graphene_vec2_t *tangent); GDK_AVAILABLE_IN_4_14 float gsk_path_point_get_rotation (const GskPathPoint *point, GskPath *path, GskPathDirection direction); GDK_AVAILABLE_IN_4_14 float gsk_path_point_get_curvature (const GskPathPoint *point, GskPath *path, GskPathDirection direction, graphene_point_t *center); GDK_AVAILABLE_IN_4_14 float gsk_path_point_get_distance (const GskPathPoint *point, GskPathMeasure *measure); G_END_DECLS