Bump for 3.6-28
[LibreOffice.git] / offapi / com / sun / star / geometry / IntegerBezierSegment2D.idl
blob42f56e9e8c205fd294ff9b337ffb29d1caea896c
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
28 #ifndef __com_sun_star_geometry_IntegerBezierSegment2D_idl__
29 #define __com_sun_star_geometry_IntegerBezierSegment2D_idl__
31 module com { module sun { module star { module geometry {
33 /** This structure contains the relevant data for a cubic Bezier
34 curve.<p>
36 The data is stored integer-valued. The last point of the segment
37 is taken from the first point of the following segment, and thus
38 not included herein. That is, when forming a polygon out of cubic
39 Bezier segments, each two consecutive IntegerBezierSegment2Ds
40 define the actual curve, with the very last segment providing only
41 the end point of the last curve, and the remaining members
42 ignored.<p>
44 @see com.sun.star.rendering.XBezierPolyPolygon2D
45 @since OOo 2.0
47 struct IntegerBezierSegment2D
49 /// The x coordinate of the start point.
50 long Px;
51 /// The y coordinate of the start point.
52 long Py;
54 /// The x coordinate of the first control point.
55 long C1x;
56 /// The y coordinate of the first control point.
57 long C1y;
59 /// The x coordinate of the second control point.
60 long C2x;
61 /// The y coordinate of the second control point.
62 long C2y;
66 }; }; }; };
68 #endif
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */