LibreOffice Module basegfx (master) 1
b2enums.hxx
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
20#pragma once
21
22namespace basegfx
23{
27 {
29 Positive = 0,
30
33
36 };
37
41 {
43 NONE = 0,
44
46 C1,
47
49 C2
50 };
51
57 enum class B2DLineJoin
58 {
59 NONE = 0, // no rounding
60 // removed unused Middle join type
61 Bevel = 2, // join edges with line
62 Miter = 3, // extend till cut
63 Round = 4 // create arc
64 };
65
66} // end of namespace basegfx
67
68/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
NONE
B2VectorContinuity
Descriptor for the mathematical continuity of two 2D Vectors.
Definition: b2enums.hxx:41
@ C1
mathematically negative oriented
@ C2
mathematically neutral, thus parallel
B2VectorOrientation
Descriptor for the mathematical orientations of two 2D Vectors.
Definition: b2enums.hxx:27
@ Positive
mathematically positive oriented
@ Neutral
mathematically neutral, thus parallel
@ Negative
mathematically negative oriented
B2DLineJoin
Descriptor for possible line joins between two line segments.
Definition: b2enums.hxx:58
@ Bevel
@ Miter
const char Round[]