-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from davesrocketshop/parts
Parts
- Loading branch information
Showing
20 changed files
with
130 additions
and
21,229 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "Resources/parts/openrocket-database"] | ||
path = Resources/parts/openrocket-database | ||
url = https://github.com/dbcook/openrocket-database.git |
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
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,61 @@ | ||
# *************************************************************************** | ||
# * Copyright (c) 2021 David Carter <[email protected]> * | ||
# * * | ||
# * This program is free software; you can redistribute it and/or modify * | ||
# * it under the terms of the GNU Lesser General Public License (LGPL) * | ||
# * as published by the Free Software Foundation; either version 2 of * | ||
# * the License, or (at your option) any later version. * | ||
# * for detail see the LICENCE text file. * | ||
# * * | ||
# * This program 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 Library General Public License for more details. * | ||
# * * | ||
# * You should have received a copy of the GNU Library General Public * | ||
# * License along with this program; if not, write to the Free Software * | ||
# * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * | ||
# * USA * | ||
# * * | ||
# *************************************************************************** | ||
"""General utilities for the Rocket Workbench""" | ||
|
||
__title__ = "General utilities for the Rocket Workbench" | ||
__author__ = "David Carter" | ||
__url__ = "https://www.davesrocketshop.com" | ||
|
||
def _msg(message): | ||
"""Write messages to the console including the line ending.""" | ||
print(message + "\n") | ||
|
||
def _wrn(message): | ||
"""Write warnings to the console including the line ending.""" | ||
print(message + "\n") | ||
|
||
def _err(message): | ||
"""Write errors to the console including the line ending.""" | ||
print(message + "\n") | ||
|
||
def _trace(className, functionName, message = None): | ||
"""Write errors to the console including the line ending.""" | ||
trace = True | ||
if trace: | ||
if message is None: | ||
print("%s:%s()\n" % (className, functionName)) | ||
else: | ||
print("%s:%s(%s)\n" % (className, functionName, message)) | ||
|
||
def _toFloat(input, defaultValue = 0.0): | ||
if input == '': | ||
return defaultValue | ||
return float(input) | ||
|
||
def _toInt(input, defaultValue = 0): | ||
if input == '': | ||
return defaultValue | ||
return int(input) | ||
|
||
def _toBoolean(value): | ||
if str(value).strip().lower() == "true": | ||
return True | ||
return False |
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
Binary file not shown.
Submodule openrocket-database
added at
89d545
Oops, something went wrong.