Skip to content

Commit

Permalink
Merge pull request #49 from henriksod/angular_constraints
Browse files Browse the repository at this point in the history
Add angular constraints functionality
  • Loading branch information
henriksod authored Sep 11, 2024
2 parents b5d14bd + b2c69a3 commit f976272
Show file tree
Hide file tree
Showing 6 changed files with 382 additions and 299 deletions.
10 changes: 10 additions & 0 deletions .clang-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
BasedOnStyle: Google
AccessModifierOffset: -3
AllowShortCaseLabelsOnASingleLine: true
AllowShortFunctionsOnASingleLine: Inline
ColumnLimit: 100
IndentWidth: 4
Language: Cpp
# Force pointers to the type for C++.
DerivePointerAlignment: false
PointerAlignment: Left
16 changes: 12 additions & 4 deletions .github/workflows/test_runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,21 @@ jobs:
compliance: strict
recursive: true
project-type: library
cpplint:
formatting-check:
name: Formatting Check
runs-on: ubuntu-latest
strategy:
matrix:
path:
- 'src'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: pip install cpplint
- run: cpplint --recursive ./src
- name: Run clang-format style check for C/C++/Protobuf programs.
uses: jidicula/[email protected]
with:
clang-format-version: '13'
check-path: ${{ matrix.path }}
fallback-style: 'Google' # optional
unit:
runs-on: ubuntu-latest
steps:
Expand Down
4 changes: 3 additions & 1 deletion .wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,6 @@ destructor
getTolerance
resetChain
deleteChain
Deallocates
Deallocates
angleBetween
applyAngularConstraints
Loading

0 comments on commit f976272

Please sign in to comment.