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
a4449418
Commit
a4449418
authored
20 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
add point with 'e', too
parent
6f149945
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Fltk/Callbacks.cpp
+5
-2
5 additions, 2 deletions
Fltk/Callbacks.cpp
with
5 additions
and
2 deletions
Fltk/Callbacks.cpp
+
5
−
2
View file @
a4449418
// $Id: Callbacks.cpp,v 1.29
3
2004-10-28 06:
11:22
geuzaine Exp $
// $Id: Callbacks.cpp,v 1.29
4
2004-10-28 06:
57:34
geuzaine Exp $
//
// Copyright (C) 1997-2004 C. Geuzaine, J.-F. Remacle
//
...
...
@@ -1671,7 +1671,7 @@ void geometry_elementary_add_new_point_cb(CALLBACK_ARGS)
while
(
1
)
{
Msg
(
STATUS3N
,
"Creating point"
);
Msg
(
ONSCREEN
,
"Click and/or enter coordinates
\n
"
"[
Click
'Add' to add point or
press
'q' to abort]"
);
"[
Press 'e' or
'Add' to add point or 'q' to abort]"
);
Vertex
*
v
;
Curve
*
c
;
Surface
*
s
;
...
...
@@ -1679,6 +1679,9 @@ void geometry_elementary_add_new_point_cb(CALLBACK_ARGS)
if
(
ib
==
'q'
){
break
;
}
else
if
(
ib
==
'e'
)
{
con_geometry_define_point_cb
(
NULL
,
NULL
);
}
else
if
(
ib
==
'c'
)
{
// mouse click
// find line in real space corresponding to current cursor position
double
p
[
3
],
d
[
3
];
...
...
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