mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
- class Graphic3d_HatchStyle is added to provide a possibility to set up custom and predefined hatching; - added the ability to set custom hatch patterns through bitmaps; - test case for issue #28107
39 lines
1.7 KiB
C++
39 lines
1.7 KiB
C++
// Created by: NW,JPB,CAL
|
|
// Copyright (c) 1991-1999 Matra Datavision
|
|
// Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
#ifndef _Aspect_HatchStyle_HeaderFile
|
|
#define _Aspect_HatchStyle_HeaderFile
|
|
|
|
//! Definition of all available hatch styles.
|
|
enum Aspect_HatchStyle
|
|
{
|
|
Aspect_HS_SOLID = 0, // TEL_HS_SOLID (no hatching)
|
|
Aspect_HS_HORIZONTAL = 7, // TEL_HS_HORIZONTAL
|
|
Aspect_HS_HORIZONTAL_WIDE = 11, // TEL_HS_HORIZONTAL_SPARSE
|
|
Aspect_HS_VERTICAL = 8, // TEL_HS_VERTICAL
|
|
Aspect_HS_VERTICAL_WIDE = 12, // TEL_HS_VERTICAL_SPARSE
|
|
Aspect_HS_DIAGONAL_45 = 5, // TEL_HS_DIAG_45
|
|
Aspect_HS_DIAGONAL_45_WIDE = 9, // TEL_HS_DIAG_45_SPARSE
|
|
Aspect_HS_DIAGONAL_135 = 6, // TEL_HS_DIAG_135
|
|
Aspect_HS_DIAGONAL_135_WIDE = 10, // TEL_HS_DIAG_135_SPARSE
|
|
Aspect_HS_GRID = 3, // TEL_HS_GRID
|
|
Aspect_HS_GRID_WIDE = 4, // TEL_HS_GRID_SPARSE
|
|
Aspect_HS_GRID_DIAGONAL = 1, // TEL_HS_CROSS
|
|
Aspect_HS_GRID_DIAGONAL_WIDE = 2, // TEL_HS_CROSS_SPARSE
|
|
Aspect_HS_NB = 13,
|
|
};
|
|
|
|
#endif // _Aspect_HatchStyle_HeaderFile
|