LibreOffice
LibreOffice 7.4 SDK API Reference
RealRectangle2D.idl
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  * Licensed to the Apache Software Foundation (ASF) under one or more
12  * contributor license agreements. See the NOTICE file distributed
13  * with this work for additional information regarding copyright
14  * ownership. The ASF licenses this file to you under the Apache
15  * License, Version 2.0 (the "License"); you may not use this file
16  * except in compliance with the License. You may obtain a copy of
17  * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
19 #ifndef __com_sun_star_geometry_RealRectangle2D_idl__
20 #define __com_sun_star_geometry_RealRectangle2D_idl__
21 
22 module com { module sun { module star { module geometry {
23 
24 /* Removed, because XCanvas is private API until further notice.
25 
26  The values are stored as reals. Please note that the
27  com.sun.star.rendering.XCanvas defines the
28  screen representation of rectangles in such a way that the lower
29  and the rightmost line of the rectangle are not drawn on
30  screen. Thus, if for two rectangles R1 and R2, R1.x2 equals R2.x1,
31  the screen representation of these rectangles will not overlap,
32  but being exactly adjacent. That also means, that an
33  IntegerRectangle2D with X1 equal X2 or Y1 equal Y2 can be
34  considered empty.<p>
35 */
36 
43 {
45  double X1;
46 
47 
49  double Y1;
50 
51 
56  double X2;
57 
58 
63  double Y2;
64 };
65 
66 }; }; }; };
67 
68 #endif
69 
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Definition: Ambiguous.idl:22
This structure contains the necessary information for a two-dimensional rectangle.
Definition: RealRectangle2D.idl:43
double X2
X coordinate of lower right corner.
Definition: RealRectangle2D.idl:56
double Y1
Y coordinate of upper left corner.
Definition: RealRectangle2D.idl:49
double Y2
Y coordinate of lower right corner.
Definition: RealRectangle2D.idl:63
double X1
X coordinate of upper left corner .
Definition: RealRectangle2D.idl:45