1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
|
import OCP.Hatch
from typing import *
from typing import Iterable as iterable
from typing import Iterator as iterator
from numpy import float64
_Shape = Tuple[int, ...]
import OCP.gp
import OCP.NCollection
__all__ = [
"Hatch_Hatcher",
"Hatch_Line",
"Hatch_LineForm",
"Hatch_Parameter",
"Hatch_SequenceOfLine",
"Hatch_SequenceOfParameter",
"Hatch_ANYLINE",
"Hatch_XLINE",
"Hatch_YLINE"
]
class Hatch_Hatcher():
"""
The Hatcher is an algorithm to compute cross hatchings in a 2d plane. It is mainly dedicated to display purpose.
"""
@overload
def AddLine(self,L : OCP.gp.gp_Lin2d,T : Hatch_LineForm=Hatch_LineForm.Hatch_ANYLINE) -> None:
"""
Add a line <L> to be trimmed. <T> the type is only kept from information. It is not used in the computation.
Add an infinite line on direction <D> at distance <Dist> from the origin to be trimmed. <Dist> may be negative.
"""
@overload
def AddLine(self,D : OCP.gp.gp_Dir2d,Dist : float) -> None: ...
def AddXLine(self,X : float) -> None:
"""
Add an infinite line parallel to the Y-axis at abciss <X>.
"""
def AddYLine(self,Y : float) -> None:
"""
Add an infinite line parallel to the X-axis at ordinate <Y>.
"""
def Coordinate(self,I : int) -> float:
"""
Returns the X or Y coordinate of the line of index <I> if it is a X or a Y line.
"""
def End(self,I : int,J : int) -> float:
"""
Returns the last parameter of interval <J> on line <I>.
"""
def EndIndex(self,I : int,J : int) -> tuple[int, float]:
"""
Returns the last Index and Par2 of interval <J> on line <I>.
"""
def IsXLine(self,I : int) -> bool:
"""
Returns True if the line of index <I> has a constant X value.
Returns True if the line of index <I> has a constant X value.
"""
def IsYLine(self,I : int) -> bool:
"""
Returns True if the line of index <I> has a constant Y value.
Returns True if the line of index <I> has a constant Y value.
"""
def Line(self,I : int) -> OCP.gp.gp_Lin2d:
"""
Returns the line of index <I>.
"""
def LineForm(self,I : int) -> Hatch_LineForm:
"""
Returns the type of the line of index <I>.
"""
@overload
def NbIntervals(self,I : int) -> int:
"""
Returns the total number of intervals on all the lines.
Returns the number of intervals on line of index <I>.
"""
@overload
def NbIntervals(self) -> int: ...
def NbLines(self) -> int:
"""
Returns the number of lines.
"""
def Start(self,I : int,J : int) -> float:
"""
Returns the first parameter of interval <J> on line <I>.
"""
def StartIndex(self,I : int,J : int) -> tuple[int, float]:
"""
Returns the first Index and Par2 of interval <J> on line <I>.
"""
@overload
def Tolerance(self,Tol : float) -> None:
"""
None
None
None
None
"""
@overload
def Tolerance(self) -> float: ...
@overload
def Trim(self,L : OCP.gp.gp_Lin2d,Index : int=0) -> None:
"""
Trims the lines at intersections with <L>.
Trims the lines at intersections with <L> in the parameter range <Start>, <End>
Trims the line at intersection with the oriented segment P1,P2.
"""
@overload
def Trim(self,P1 : OCP.gp.gp_Pnt2d,P2 : OCP.gp.gp_Pnt2d,Index : int=0) -> None: ...
@overload
def Trim(self,L : OCP.gp.gp_Lin2d,Start : float,End : float,Index : int=0) -> None: ...
def __init__(self,Tol : float,Oriented : bool=True) -> None: ...
pass
class Hatch_Line():
"""
Stores a Line in the Hatcher. Represented by :
"""
def AddIntersection(self,Par1 : float,Start : bool,Index : int,Par2 : float,theToler : float) -> None:
"""
Insert a new intersection in the sorted list.
"""
@overload
def __init__(self,L : OCP.gp.gp_Lin2d,T : Hatch_LineForm) -> None: ...
@overload
def __init__(self) -> None: ...
pass
class Hatch_LineForm():
"""
Form of a trimmed line
Members:
Hatch_XLINE
Hatch_YLINE
Hatch_ANYLINE
"""
def __eq__(self,other : object) -> bool: ...
def __getstate__(self) -> int: ...
def __hash__(self) -> int: ...
def __index__(self) -> int: ...
def __init__(self,value : int) -> None: ...
def __int__(self) -> int: ...
def __ne__(self,other : object) -> bool: ...
def __repr__(self) -> str: ...
def __setstate__(self,state : int) -> None: ...
def __str__(self) -> str: ...
@property
def name(self) -> None:
"""
:type: None
"""
@property
def value(self) -> int:
"""
:type: int
"""
Hatch_ANYLINE: OCP.Hatch.Hatch_LineForm # value = <Hatch_LineForm.Hatch_ANYLINE: 2>
Hatch_XLINE: OCP.Hatch.Hatch_LineForm # value = <Hatch_LineForm.Hatch_XLINE: 0>
Hatch_YLINE: OCP.Hatch.Hatch_LineForm # value = <Hatch_LineForm.Hatch_YLINE: 1>
__entries: dict # value = {'Hatch_XLINE': (<Hatch_LineForm.Hatch_XLINE: 0>, None), 'Hatch_YLINE': (<Hatch_LineForm.Hatch_YLINE: 1>, None), 'Hatch_ANYLINE': (<Hatch_LineForm.Hatch_ANYLINE: 2>, None)}
__members__: dict # value = {'Hatch_XLINE': <Hatch_LineForm.Hatch_XLINE: 0>, 'Hatch_YLINE': <Hatch_LineForm.Hatch_YLINE: 1>, 'Hatch_ANYLINE': <Hatch_LineForm.Hatch_ANYLINE: 2>}
pass
class Hatch_Parameter():
"""
Stores an intersection on a line represented by :
"""
@overload
def __init__(self) -> None: ...
@overload
def __init__(self,Par1 : float,Start : bool,Index : int=0,Par2 : float=0.0) -> None: ...
pass
class Hatch_SequenceOfLine(OCP.NCollection.NCollection_BaseSequence):
"""
Purpose: Definition of a sequence of elements indexed by an Integer in range of 1..n
"""
def Allocator(self) -> OCP.NCollection.NCollection_BaseAllocator:
"""
Returns attached allocator
"""
@overload
def Append(self,theItem : Hatch_Line) -> None:
"""
Append one item
Append another sequence (making it empty)
"""
@overload
def Append(self,theSeq : Hatch_SequenceOfLine) -> None: ...
def Assign(self,theOther : Hatch_SequenceOfLine) -> Hatch_SequenceOfLine:
"""
Replace this sequence by the items of theOther. This method does not change the internal allocator.
"""
def ChangeFirst(self) -> Hatch_Line:
"""
First item access
"""
def ChangeLast(self) -> Hatch_Line:
"""
Last item access
"""
def ChangeValue(self,theIndex : int) -> Hatch_Line:
"""
Variable item access by theIndex
"""
def Clear(self,theAllocator : OCP.NCollection.NCollection_BaseAllocator=None) -> None:
"""
Clear the items out, take a new allocator if non null
"""
def Exchange(self,I : int,J : int) -> None:
"""
Exchange two members
"""
def First(self) -> Hatch_Line:
"""
First item access
"""
@overload
def InsertAfter(self,theIndex : int,theSeq : Hatch_SequenceOfLine) -> None:
"""
InsertAfter theIndex another sequence (making it empty)
InsertAfter theIndex theItem
"""
@overload
def InsertAfter(self,theIndex : int,theItem : Hatch_Line) -> None: ...
@overload
def InsertBefore(self,theIndex : int,theItem : Hatch_Line) -> None:
"""
InsertBefore theIndex theItem
InsertBefore theIndex another sequence (making it empty)
"""
@overload
def InsertBefore(self,theIndex : int,theSeq : Hatch_SequenceOfLine) -> None: ...
def IsEmpty(self) -> bool:
"""
Empty query
"""
def Last(self) -> Hatch_Line:
"""
Last item access
"""
def Length(self) -> int:
"""
Number of items
"""
def Lower(self) -> int:
"""
Method for consistency with other collections.
"""
@overload
def Prepend(self,theItem : Hatch_Line) -> None:
"""
Prepend one item
Prepend another sequence (making it empty)
"""
@overload
def Prepend(self,theSeq : Hatch_SequenceOfLine) -> None: ...
@overload
def Remove(self,theFromIndex : int,theToIndex : int) -> None:
"""
Remove one item
Remove range of items
"""
@overload
def Remove(self,theIndex : int) -> None: ...
def Reverse(self) -> None:
"""
Reverse sequence
"""
def SetValue(self,theIndex : int,theItem : Hatch_Line) -> None:
"""
Set item value by theIndex
"""
def Size(self) -> int:
"""
Number of items
"""
def Split(self,theIndex : int,theSeq : Hatch_SequenceOfLine) -> None:
"""
Split in two sequences
"""
def Upper(self) -> int:
"""
Method for consistency with other collections.
"""
def Value(self,theIndex : int) -> Hatch_Line:
"""
Constant item access by theIndex
"""
def __bool__(self) -> bool: ...
def __call__(self,theIndex : int) -> Hatch_Line:
"""
Constant operator()
Variable operator()
"""
@overload
def __init__(self) -> None: ...
@overload
def __init__(self,theOther : Hatch_SequenceOfLine) -> None: ...
@overload
def __init__(self,theAllocator : OCP.NCollection.NCollection_BaseAllocator) -> None: ...
def __iter__(self) -> Iterator[Hatch_Line]: ...
def __len__(self) -> int: ...
@staticmethod
def delNode_s(theNode : NCollection_SeqNode,theAl : OCP.NCollection.NCollection_BaseAllocator) -> None:
"""
Static deleter to be passed to BaseSequence
"""
pass
class Hatch_SequenceOfParameter(OCP.NCollection.NCollection_BaseSequence):
"""
Purpose: Definition of a sequence of elements indexed by an Integer in range of 1..n
"""
def Allocator(self) -> OCP.NCollection.NCollection_BaseAllocator:
"""
Returns attached allocator
"""
@overload
def Append(self,theSeq : Hatch_SequenceOfParameter) -> None:
"""
Append one item
Append another sequence (making it empty)
"""
@overload
def Append(self,theItem : Hatch_Parameter) -> None: ...
def Assign(self,theOther : Hatch_SequenceOfParameter) -> Hatch_SequenceOfParameter:
"""
Replace this sequence by the items of theOther. This method does not change the internal allocator.
"""
def ChangeFirst(self) -> Hatch_Parameter:
"""
First item access
"""
def ChangeLast(self) -> Hatch_Parameter:
"""
Last item access
"""
def ChangeValue(self,theIndex : int) -> Hatch_Parameter:
"""
Variable item access by theIndex
"""
def Clear(self,theAllocator : OCP.NCollection.NCollection_BaseAllocator=None) -> None:
"""
Clear the items out, take a new allocator if non null
"""
def Exchange(self,I : int,J : int) -> None:
"""
Exchange two members
"""
def First(self) -> Hatch_Parameter:
"""
First item access
"""
@overload
def InsertAfter(self,theIndex : int,theItem : Hatch_Parameter) -> None:
"""
InsertAfter theIndex another sequence (making it empty)
InsertAfter theIndex theItem
"""
@overload
def InsertAfter(self,theIndex : int,theSeq : Hatch_SequenceOfParameter) -> None: ...
@overload
def InsertBefore(self,theIndex : int,theItem : Hatch_Parameter) -> None:
"""
InsertBefore theIndex theItem
InsertBefore theIndex another sequence (making it empty)
"""
@overload
def InsertBefore(self,theIndex : int,theSeq : Hatch_SequenceOfParameter) -> None: ...
def IsEmpty(self) -> bool:
"""
Empty query
"""
def Last(self) -> Hatch_Parameter:
"""
Last item access
"""
def Length(self) -> int:
"""
Number of items
"""
def Lower(self) -> int:
"""
Method for consistency with other collections.
"""
@overload
def Prepend(self,theItem : Hatch_Parameter) -> None:
"""
Prepend one item
Prepend another sequence (making it empty)
"""
@overload
def Prepend(self,theSeq : Hatch_SequenceOfParameter) -> None: ...
@overload
def Remove(self,theIndex : int) -> None:
"""
Remove one item
Remove range of items
"""
@overload
def Remove(self,theFromIndex : int,theToIndex : int) -> None: ...
def Reverse(self) -> None:
"""
Reverse sequence
"""
def SetValue(self,theIndex : int,theItem : Hatch_Parameter) -> None:
"""
Set item value by theIndex
"""
def Size(self) -> int:
"""
Number of items
"""
def Split(self,theIndex : int,theSeq : Hatch_SequenceOfParameter) -> None:
"""
Split in two sequences
"""
def Upper(self) -> int:
"""
Method for consistency with other collections.
"""
def Value(self,theIndex : int) -> Hatch_Parameter:
"""
Constant item access by theIndex
"""
def __bool__(self) -> bool: ...
def __call__(self,theIndex : int) -> Hatch_Parameter:
"""
Constant operator()
Variable operator()
"""
@overload
def __init__(self,theAllocator : OCP.NCollection.NCollection_BaseAllocator) -> None: ...
@overload
def __init__(self) -> None: ...
@overload
def __init__(self,theOther : Hatch_SequenceOfParameter) -> None: ...
def __iter__(self) -> Iterator[Hatch_Parameter]: ...
def __len__(self) -> int: ...
@staticmethod
def delNode_s(theNode : NCollection_SeqNode,theAl : OCP.NCollection.NCollection_BaseAllocator) -> None:
"""
Static deleter to be passed to BaseSequence
"""
pass
Hatch_ANYLINE: OCP.Hatch.Hatch_LineForm # value = <Hatch_LineForm.Hatch_ANYLINE: 2>
Hatch_XLINE: OCP.Hatch.Hatch_LineForm # value = <Hatch_LineForm.Hatch_XLINE: 0>
Hatch_YLINE: OCP.Hatch.Hatch_LineForm # value = <Hatch_LineForm.Hatch_YLINE: 1>
|