📄 cairo-path.c
字号:
/* cairo - a vector graphics library with display and print output * * Copyright © 2002 University of Southern California * Copyright © 2005 Red Hat, Inc. * * This library is free software; you can redistribute it and/or * modify it either under the terms of the GNU Lesser General Public * License version 2.1 as published by the Free Software Foundation * (the "LGPL") or, at your option, under the terms of the Mozilla * Public License Version 1.1 (the "MPL"). If you do not alter this * notice, a recipient may use your version of this file under either * the MPL or the LGPL. * * You should have received a copy of the LGPL along with this library * in the file COPYING-LGPL-2.1; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * You should have received a copy of the MPL along with this library * in the file COPYING-MPL-1.1 * * The contents of this file are subject to the Mozilla Public License * Version 1.1 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY * OF ANY KIND, either express or implied. See the LGPL or the MPL for * the specific language governing rights and limitations. * * The Original Code is the cairo graphics library. * * The Initial Developer of the Original Code is University of Southern * California. * * Contributor(s): * Carl D. Worth <cworth@cworth.org> */#include <stdlib.h>#include "cairoint.h"#include "cairo-path-fixed-private.h"/* private functions */static cairo_status_t_cairo_path_fixed_add (cairo_path_fixed_t *path, cairo_path_op_t op, cairo_point_t *points, int num_points);static void_cairo_path_fixed_add_op_buf (cairo_path_fixed_t *path, cairo_path_op_buf_t *op_buf);static void_cairo_path_fixed_add_arg_buf (cairo_path_fixed_t *path, cairo_path_arg_buf_t *arg_buf);static cairo_path_op_buf_t *_cairo_path_op_buf_create (void);static void_cairo_path_op_buf_destroy (cairo_path_op_buf_t *op_buf);static void_cairo_path_op_buf_add_op (cairo_path_op_buf_t *op_buf, cairo_path_op_t op);static cairo_path_arg_buf_t *_cairo_path_arg_buf_create (void);static void_cairo_path_arg_buf_destroy (cairo_path_arg_buf_t *arg_buf);static void_cairo_path_arg_buf_add_points (cairo_path_arg_buf_t *arg_buf, cairo_point_t *points, int num_points);void_cairo_path_fixed_init (cairo_path_fixed_t *path){ path->op_buf_head = NULL; path->op_buf_tail = NULL; path->arg_buf_head = NULL; path->arg_buf_tail = NULL; path->current_point.x = 0; path->current_point.y = 0; path->has_current_point = FALSE; path->last_move_point = path->current_point;}cairo_status_t_cairo_path_fixed_init_copy (cairo_path_fixed_t *path, cairo_path_fixed_t *other){ cairo_path_op_buf_t *op_buf, *other_op_buf; cairo_path_arg_buf_t *arg_buf, *other_arg_buf; _cairo_path_fixed_init (path); path->current_point = other->current_point; path->has_current_point = other->has_current_point; path->last_move_point = other->last_move_point; for (other_op_buf = other->op_buf_head; other_op_buf; other_op_buf = other_op_buf->next) { op_buf = _cairo_path_op_buf_create (); if (op_buf == NULL) { _cairo_path_fixed_fini (path); return CAIRO_STATUS_NO_MEMORY; } memcpy (op_buf, other_op_buf, sizeof (cairo_path_op_buf_t)); _cairo_path_fixed_add_op_buf (path, op_buf); } for (other_arg_buf = other->arg_buf_head; other_arg_buf; other_arg_buf = other_arg_buf->next) { arg_buf = _cairo_path_arg_buf_create (); if (arg_buf == NULL) { _cairo_path_fixed_fini (path); return CAIRO_STATUS_NO_MEMORY; } memcpy (arg_buf, other_arg_buf, sizeof (cairo_path_arg_buf_t)); _cairo_path_fixed_add_arg_buf (path, arg_buf); } return CAIRO_STATUS_SUCCESS;}cairo_path_fixed_t *_cairo_path_fixed_create (void){ cairo_path_fixed_t *path = malloc (sizeof (cairo_path_fixed_t)); if (!path) return NULL; _cairo_path_fixed_init (path); return path;}void_cairo_path_fixed_fini (cairo_path_fixed_t *path){ cairo_path_op_buf_t *op_buf; cairo_path_arg_buf_t *arg_buf; while (path->op_buf_head) { op_buf = path->op_buf_head; path->op_buf_head = op_buf->next; _cairo_path_op_buf_destroy (op_buf); } path->op_buf_tail = NULL; while (path->arg_buf_head) { arg_buf = path->arg_buf_head; path->arg_buf_head = arg_buf->next; _cairo_path_arg_buf_destroy (arg_buf); } path->arg_buf_tail = NULL; path->has_current_point = FALSE;}void_cairo_path_fixed_destroy (cairo_path_fixed_t *path){ _cairo_path_fixed_fini (path); free (path);}cairo_status_t_cairo_path_fixed_move_to (cairo_path_fixed_t *path, cairo_fixed_t x, cairo_fixed_t y){ cairo_status_t status; cairo_point_t point; point.x = x; point.y = y; status = _cairo_path_fixed_add (path, CAIRO_PATH_OP_MOVE_TO, &point, 1); if (status) return status; path->current_point = point; path->has_current_point = TRUE; path->last_move_point = path->current_point; return CAIRO_STATUS_SUCCESS;}void_cairo_path_fixed_new_sub_path (cairo_path_fixed_t *path){ path->has_current_point = FALSE;}cairo_status_t_cairo_path_fixed_rel_move_to (cairo_path_fixed_t *path, cairo_fixed_t dx, cairo_fixed_t dy){ cairo_fixed_t x, y; if (! path->has_current_point) return CAIRO_STATUS_NO_CURRENT_POINT; x = path->current_point.x + dx; y = path->current_point.y + dy; return _cairo_path_fixed_move_to (path, x, y);}cairo_status_t_cairo_path_fixed_line_to (cairo_path_fixed_t *path, cairo_fixed_t x, cairo_fixed_t y){ cairo_status_t status; cairo_point_t point; point.x = x; point.y = y; if (! path->has_current_point) status = _cairo_path_fixed_add (path, CAIRO_PATH_OP_MOVE_TO, &point, 1); else status = _cairo_path_fixed_add (path, CAIRO_PATH_OP_LINE_TO, &point, 1); if (status) return status; path->current_point = point; path->has_current_point = TRUE; return CAIRO_STATUS_SUCCESS;}cairo_status_t_cairo_path_fixed_rel_line_to (cairo_path_fixed_t *path, cairo_fixed_t dx, cairo_fixed_t dy){ cairo_fixed_t x, y; if (! path->has_current_point) return CAIRO_STATUS_NO_CURRENT_POINT; x = path->current_point.x + dx; y = path->current_point.y + dy; return _cairo_path_fixed_line_to (path, x, y);}cairo_status_t_cairo_path_fixed_curve_to (cairo_path_fixed_t *path, cairo_fixed_t x0, cairo_fixed_t y0, cairo_fixed_t x1, cairo_fixed_t y1, cairo_fixed_t x2, cairo_fixed_t y2){ cairo_status_t status; cairo_point_t point[3]; point[0].x = x0; point[0].y = y0; point[1].x = x1; point[1].y = y1; point[2].x = x2; point[2].y = y2; if (! path->has_current_point) { status = _cairo_path_fixed_add (path, CAIRO_PATH_OP_MOVE_TO, &point[0], 1); if (status) return status; } status = _cairo_path_fixed_add (path, CAIRO_PATH_OP_CURVE_TO, point, 3); if (status) return status; path->current_point = point[2]; path->has_current_point = TRUE; return CAIRO_STATUS_SUCCESS;}cairo_status_t_cairo_path_fixed_rel_curve_to (cairo_path_fixed_t *path, cairo_fixed_t dx0, cairo_fixed_t dy0, cairo_fixed_t dx1, cairo_fixed_t dy1, cairo_fixed_t dx2, cairo_fixed_t dy2){ cairo_fixed_t x0, y0; cairo_fixed_t x1, y1; cairo_fixed_t x2, y2; if (! path->has_current_point) return CAIRO_STATUS_NO_CURRENT_POINT; x0 = path->current_point.x + dx0; y0 = path->current_point.y + dy0; x1 = path->current_point.x + dx1; y1 = path->current_point.y + dy1; x2 = path->current_point.x + dx2; y2 = path->current_point.y + dy2; return _cairo_path_fixed_curve_to (path, x0, y0, x1, y1, x2, y2);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -