Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
128b3d0a
Commit
128b3d0a
authored
16 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
*** empty log message ***
parent
52884f9b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Common/Context.cpp
+91
-0
91 additions, 0 deletions
Common/Context.cpp
doc/VERSIONS.txt
+3
-2
3 additions, 2 deletions
doc/VERSIONS.txt
with
94 additions
and
2 deletions
Common/Context.cpp
0 → 100644
+
91
−
0
View file @
128b3d0a
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
#include
"Context.h"
#if defined(HAVE_FLTK)
#include
<FL/Fl.H>
#endif
CTX
::
CTX
()
{
// These options have no default values in DefaultOptions.h (i.e.,
// cannot be set by the user)
batch
=
batch_after_mesh
=
0
;
output_filename
=
""
;
bgm_filename
=
""
;
lc
=
1.
;
min
[
0
]
=
min
[
1
]
=
min
[
2
]
=
max
[
2
]
=
0.
;
max
[
0
]
=
max
[
1
]
=
1.
;
// for nice view when adding point in new model
cg
[
0
]
=
cg
[
1
]
=
cg
[
2
]
=
0.
;
polygon_offset
=
0
;
printing
=
0
;
mesh_timer
[
0
]
=
mesh_timer
[
1
]
=
mesh_timer
[
2
]
=
0.
;
draw_rotation_center
=
0
;
pick_elements
=
0
;
geom
.
draw
=
1
;
mesh
.
draw
=
1
;
post
.
draw
=
1
;
threads_lock
=
0
;
// very primitive locking
mesh
.
changed
=
0
;
post
.
combine_time
=
0
;
// try to combine_time views at startup
post
.
plugin_draw_function
=
0
;
#if defined(HAVE_FLTK)
gl_font_enum
=
FL_HELVETICA
;
#else
gl_font_enum
=
-
1
;
#endif
forced_bbox
=
0
;
hide_unselected
=
0
;
num_windows
=
num_tiles
=
1
;
deltafontsize
=
0
;
}
CTX
*
CTX
::
_instance
=
0
;
CTX
*
CTX
::
instance
()
{
if
(
!
_instance
)
_instance
=
new
CTX
();
return
_instance
;
}
unsigned
int
CTX
::
pack_color
(
int
R
,
int
G
,
int
B
,
int
A
)
{
if
(
big_endian
)
return
(
(
unsigned
int
)((
R
)
<<
24
|
(
G
)
<<
16
|
(
B
)
<<
8
|
(
A
))
);
else
return
(
(
unsigned
int
)((
A
)
<<
24
|
(
B
)
<<
16
|
(
G
)
<<
8
|
(
R
))
);
}
int
CTX
::
unpack_red
(
unsigned
int
X
)
{
if
(
big_endian
)
return
(
(
(
X
)
>>
24
)
&
0xff
);
else
return
(
(
X
)
&
0xff
);
}
int
CTX
::
unpack_green
(
unsigned
int
X
)
{
if
(
big_endian
)
return
(
(
(
X
)
>>
16
)
&
0xff
);
else
return
(
(
(
X
)
>>
8
)
&
0xff
);
}
int
CTX
::
unpack_blue
(
unsigned
int
X
)
{
if
(
big_endian
)
return
(
(
(
X
)
>>
8
)
&
0xff
);
else
return
(
(
(
X
)
>>
16
)
&
0xff
);
}
int
CTX
::
unpack_alpha
(
unsigned
int
X
)
{
if
(
big_endian
)
return
(
(
X
)
&
0xff
);
else
return
(
(
(
X
)
>>
24
)
&
0xff
);
}
This diff is collapsed.
Click to expand it.
doc/VERSIONS.txt
+
3
−
2
View file @
128b3d0a
$Id: VERSIONS.txt,v 1.3
4
2009-01-
26 12
:3
1
:51 geuzaine Exp $
$Id: VERSIONS.txt,v 1.3
5
2009-01-
30 23
:3
3
:51 geuzaine Exp $
2.3.1 (?): new per-window visibility.
2.3.1 (?): new per-window visibility; fixes for string options in
parser.
2.3.0 (Jan 23, 2009): major graphics and GUI code refactoring; new
2.3.0 (Jan 23, 2009): major graphics and GUI code refactoring; new
full-quad/hexa subdivision algorithm (removed Mesh.RecombineAlgo);
full-quad/hexa subdivision algorithm (removed Mesh.RecombineAlgo);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment