rigibra
Rigibra - RIGId body algeBRA package. Practical C++ rigid body modeling algebra.
Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (9.6%) to scientific vocabulary
Repository
Rigibra - RIGId body algeBRA package. Practical C++ rigid body modeling algebra.
Basic Info
Statistics
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
- Releases: 0
Metadata Files
README.md
Rigibra - RIGId body algeBRA package
Build Process
Use the CMake system to create a build generation environment. E.g. in a *nix environment, build and test commands are similar to,
$ # -- Compile everything (including doxygen documentation)
$ mkdir <someBuildDir> && cd <someBuildDir>
$ cmake \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/tmpLocal/ \
-DCMAKE_PREFIX_PATH=/tmpLocal/ \
/repos/Rigibra
$ cmake --build . --target all -j `nproc`
$ # -- Run library unit tests
$ ctest -j `nproc`
$ # -- Create distribution packages
$ cpack
$ # -- Installation
$ dpkg --contents ./Engabra*
$ sudo apt-get install ./Engabra-0.1.0-Linux.deb # Install
$ sudo apt-get remove engabra # Remove
NOTE: The build process uses "git describe" command to get source code identifier information. If the build process (user) id is different from the source code repository ownership id, you may recieve an error message like this:
### Can't get 'git describe' result
### ErrorString: fatal: detected dubious ownership in repository at ...
If this happens, the unit test (e.g. run via CTest), "test_Version" will fail. The git error can be avoided by adding an git exception assigned to the source code source repository, e.g.,
# To add an exception for this directory, call:
$ git config --global --add safe.directory /repos/Rigibra
Owner
- Name: Stellacore Organization
- Login: Stellacore
- Kind: user
- Company: Stellacore Corporation
- Website: https://stellacore.com
- Repositories: 1
- Profile: https://github.com/Stellacore
Innovative spatial measurement and analytical modelling
Citation (CITATION.cff)
# This CITATION.cff file was generated with cffinit.
# Visit https://bit.ly/cffinit to generate yours today!
cff-version: 1.2.0
title: Rigibra
message: >-
If you use this software, please cite it using the
metadata from this file.
type: software
authors:
- name: Stellacore Corporation
- given-names: Dave
family-names: Knopp
repository-code: 'https://github.com/Stellacore/Rigibra'
abstract: >-
Rigid body transformation algebra library that uses
Engabra package to provide concise and powerful
representation of rigid body orientation and dyanmics
in 3D space.
keywords:
- Rigid Body
- Orientation
- Pose
- Transformation
license: MIT