-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Consolidate big E command into draw plugin.
- Loading branch information
1 parent
173e343
commit ccca135
Showing
6 changed files
with
59 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* G E D _ D R A W . H | ||
* BRL-CAD | ||
* | ||
* Copyright (c) 2008-2024 United States Government as represented by | ||
* the U.S. Army Research Laboratory. | ||
* | ||
* 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. | ||
* | ||
* This library is distributed in the hope that it will be useful, but | ||
* WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this file; see the file named COPYING for more | ||
* information. | ||
*/ | ||
/** @file ged_brep.h | ||
* | ||
* Private header for libged draw cmd. | ||
* | ||
*/ | ||
|
||
#ifndef LIBGED_DRAW_GED_PRIVATE_H | ||
#define LIBGED_DRAW_GED_PRIVATE_H | ||
|
||
#include "common.h" | ||
|
||
#include "ged.h" | ||
|
||
__BEGIN_DECLS | ||
|
||
extern int ged_E_core(struct ged *gedp, int argc, const char *argv[]); | ||
|
||
__END_DECLS | ||
|
||
#endif /* LIBGED_DRAW_GED_PRIVATE_H */ | ||
|
||
/** @} */ | ||
/* | ||
* Local Variables: | ||
* mode: C | ||
* tab-width: 8 | ||
* indent-tabs-mode: t | ||
* c-file-style: "stroustrup" | ||
* End: | ||
* ex: shiftwidth=4 tabstop=8 | ||
*/ |