CFx SDK Documentation
2020SP3
Main Page
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
Variables
a
k
o
s
v
w
Typedefs
_
a
b
c
d
e
f
h
i
l
m
o
p
r
s
t
u
v
w
Enumerations
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
Enumerator
a
b
c
d
e
h
i
k
l
m
o
p
r
s
t
u
v
w
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Related Functions
b
c
d
e
f
g
h
i
m
o
p
r
s
v
w
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
i
l
m
n
o
p
q
r
s
t
u
v
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
a
b
d
e
f
g
i
m
o
p
s
t
Enumerator
a
c
d
e
g
j
k
o
s
t
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
SDK
CFx
dd_inc
DgnLS
DbLSStrokePatternComponent.h
Go to the documentation of this file.
1
// Copyright (C) 2002-2017, Open Design Alliance (the "Alliance").
3
// All rights reserved.
4
//
5
// This software and its documentation and related materials are owned by
6
// the Alliance. The software may only be incorporated into application
7
// programs owned by members of the Alliance, subject to a signed
8
// Membership Agreement and Supplemental Software License Agreement with the
9
// Alliance. The structure and organization of this software are the valuable
10
// trade secrets of the Alliance and its suppliers. The software is also
11
// protected by copyright law and international treaty provisions. Application
12
// programs incorporating this software must include the following statement
13
// with their copyright notices:
14
//
15
// This application incorporates Teigha(R) software pursuant to a license
16
// agreement with Open Design Alliance.
17
// Teigha(R) Copyright (C) 2002-2017 by Open Design Alliance.
18
// All rights reserved.
19
//
20
// By use of this software, its documentation or related materials, you
21
// acknowledge and accept the above terms.
23
24
#ifndef ODDGNLS_DBLSSTROKEPATTERNCOMPONENT_H
25
#define ODDGNLS_DBLSSTROKEPATTERNCOMPONENT_H
26
27
#include "
DbLSComponent.h
"
28
#include "
DbLSStroke.h
"
29
30
#include "
TD_PackPush.h
"
31
38
class
ODDGNLS_EXPORT
OdDbLSStrokePatternComponent
:
public
OdDbLSComponent
39
{
40
public
:
41
enum
PhaseMode
42
{
43
kLSPhaseDistance = 0,
// Distance phase mode
44
kLSPhaseFraction = 1,
// Fraction phase mode (auto phase)
45
kLSPhaseCentered = 2
// Centered phase mode (stretch phase mode)
46
};
47
public
:
48
ODDB_DECLARE_MEMBERS
(
OdDbLSStrokePatternComponent
);
49
50
OdDbLSStrokePatternComponent
();
51
58
double
autoPhase
()
const
;
64
void
setAutoPhase
(
double
fPhase);
65
69
bool
hasIterationLimit
()
const
;
75
void
setHasIterationLimit
(
bool
bSet);
76
88
OdDbLSStroke
*
insertStroke
(
double
fLength = 1.0,
double
fStartWidth = 0.0,
double
fEndWidth = 0.0,
89
OdDbLSStroke::WidthMode
widthMode =
OdDbLSStroke::kLSNoWidth
,
OdDbLSStroke::CapMode
capMode =
OdDbLSStroke::kLSCapsClosed
);
97
OdDbLSStroke
*
insertStroke
(
const
OdDbLSStroke
*pStroke);
103
OdDbLSStroke
*
stroke
(
OdUInt32
nStroke)
const
;
104
110
void
deleteStroke
(
OdUInt32
nStroke);
111
115
OdUInt32
numberStrokes
()
const
;
116
120
bool
isSingleSegment
()
const
;
126
void
setIsSingleSegment
(
bool
bSet);
127
131
OdInt32
iterationLimit
()
const
;
137
void
setIterationLimit
(
OdInt32
nLimit);
138
145
double
phase
()
const
;
151
void
setPhase
(
double
fPhase);
152
156
PhaseMode
phaseMode
()
const
;
162
void
setPhaseMode
(
PhaseMode
mode);
163
};
164
168
typedef
OdSmartPtr<OdDbLSStrokePatternComponent>
OdDbLSStrokePatternComponentPtr
;
169
170
#include "
TD_PackPop.h
"
171
172
#endif // ODDGNLS_DBLSSTROKEPATTERNCOMPONENT_H
OdDbLSStrokePatternComponent::autoPhase
double autoPhase() const
OdDbLSStroke::CapMode
CapMode
Definition:
DbLSStroke.h:48
OdDbLSStrokePatternComponent::setAutoPhase
void setAutoPhase(double fPhase)
OdDbLSStrokePatternComponent::insertStroke
OdDbLSStroke * insertStroke(double fLength=1.0, double fStartWidth=0.0, double fEndWidth=0.0, OdDbLSStroke::WidthMode widthMode=OdDbLSStroke::kLSNoWidth, OdDbLSStroke::CapMode capMode=OdDbLSStroke::kLSCapsClosed)
OdDbLSStrokePatternComponent::setPhase
void setPhase(double fPhase)
OdDbLSStroke::kLSCapsClosed
@ kLSCapsClosed
Definition:
DbLSStroke.h:49
OdDbLSStrokePatternComponent::stroke
OdDbLSStroke * stroke(OdUInt32 nStroke) const
DbLSStroke.h
OdDbLSStrokePatternComponent::ODDB_DECLARE_MEMBERS
ODDB_DECLARE_MEMBERS(OdDbLSStrokePatternComponent)
TD_PackPop.h
OdDbLSStrokePatternComponent::setHasIterationLimit
void setHasIterationLimit(bool bSet)
OdDbLSStrokePatternComponent::iterationLimit
OdInt32 iterationLimit() const
OdUInt32
unsigned int OdUInt32
Definition:
OdPlatformSettings.h:783
OdDbLSStroke::kLSNoWidth
@ kLSNoWidth
Definition:
DbLSStroke.h:42
OdDbLSStrokePatternComponent::deleteStroke
void deleteStroke(OdUInt32 nStroke)
OdSmartPtr
Definition:
SmartPtr.h:58
OdDbLSStrokePatternComponent
Definition:
DbLSStrokePatternComponent.h:39
OdDbLSStrokePatternComponent::OdDbLSStrokePatternComponent
OdDbLSStrokePatternComponent()
OdDbLSStrokePatternComponent::phase
double phase() const
OdInt32
int OdInt32
Definition:
OdPlatformSettings.h:782
OdDbLSStrokePatternComponent::setPhaseMode
void setPhaseMode(PhaseMode mode)
OdDbLSStrokePatternComponent::insertStroke
OdDbLSStroke * insertStroke(const OdDbLSStroke *pStroke)
OdDbLSStrokePatternComponent::PhaseMode
PhaseMode
Definition:
DbLSStrokePatternComponent.h:42
OdDbLSStrokePatternComponent::hasIterationLimit
bool hasIterationLimit() const
OdDbLSStrokePatternComponent::numberStrokes
OdUInt32 numberStrokes() const
TD_PackPush.h
OdDbLSStrokePatternComponentPtr
OdSmartPtr< OdDbLSStrokePatternComponent > OdDbLSStrokePatternComponentPtr
Definition:
DbLSStrokePatternComponent.h:168
OdDbLSStroke
Definition:
DbLSStroke.h:39
OdDbLSStrokePatternComponent::setIsSingleSegment
void setIsSingleSegment(bool bSet)
OdDbLSStrokePatternComponent::phaseMode
PhaseMode phaseMode() const
OdDbLSComponent
Definition:
DbLSComponent.h:47
DbLSComponent.h
OdDbLSStroke::WidthMode
WidthMode
Definition:
DbLSStroke.h:41
ODDGNLS_EXPORT
#define ODDGNLS_EXPORT
Definition:
OdDgnLSExport.h:33
OdDbLSStrokePatternComponent::setIterationLimit
void setIterationLimit(OdInt32 nLimit)
OdDbLSStrokePatternComponent::isSingleSegment
bool isSingleSegment() const
Generated on Mon Oct 12 2020 11:49:30