Bump for 3.6-28
[LibreOffice.git] / offapi / com / sun / star / geometry / RealBezierSegment2D.idl
blob2cf9dd8e53c21a4e4e8826ce302534710d70a37e
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_RealBezierSegment2D_idl__
29 #define __com_sun_star_geometry_RealBezierSegment2D_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 real-valued. The last point of the segment is
37 taken from the first point of the following segment, and thus not
38 included herein. That is, when forming a polygon out of cubic
39 Bezier segments, each two consecutive RealBezierSegment2D
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 RealBezierSegment2D
49 /// The x coordinate of the start point.
50 double Px;
51 /// The y coordinate of the start point.
52 double Py;
54 /// The x coordinate of the first control point.
55 double C1x;
56 /// The y coordinate of the first control point.
57 double C1y;
59 /// The x coordinate of the second control point.
60 double C2x;
61 /// The y coordinate of the second control point.
62 double C2y;
66 }; }; }; };
68 #endif
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */