Skip to content

Commit

Permalink
Release 4.0
Browse files Browse the repository at this point in the history
Fix version number to extension version

Add flag to decide whether to parse or ignore joint mimic flag

Handling meshes that inadvertertly duplicate the UV maps

Revert "Handling meshes that inadvertertly duplicate the UV maps"

This reverts commit 23e0784.

Handling meshes that inadvertertly duplicate the UV maps

add prompt checks for path and overwrite for the UI import workflow

fixes articulation root settings

updates version

fixes no joints case

updates expected usd

Add repo codesign so we can publish

change import robot to allow getting articulation root path

Fix issues when Overwriting on import.

Update when saving USD files so it doesn't overload memory or segfaults

code format; remove unecessary includes

add unit test

Inertia Principal Axis; Dynamics damping; Massless Root Link

update default stiffness

Apply 1 suggestion(s) to 1 file(s)

Apply 1 suggestion(s) to 1 file(s)

Apply 1 suggestion(s) to 1 file(s)

Apply 1 suggestion(s) to 1 file(s)

Apply 1 suggestion(s) to 1 file(s)

Apply 1 suggestion(s) to 1 file(s)

Joint Axis is maintained when importing if it's aligned with X, Y or Z parent body axis

Split urdf Parsing and convertion; Add Utility to modify joint drive type

Parse URDF In Memory; Add UI Hooks

Fix ui positioning for the extra frames.

support GLTF meshes in usd

update kit version to 106

Add compatibility to Windows build

adjust for linux+ win build

parse sensors

fix example window UI buttons callbacks

add format options / Code Format

Update Tools; Format code; Update Kit sdk

update repo configs

Update .gitlab-ci.yml file

Update .gitlab-ci.yml file

Fix linux build

disable extension signing

Replace mimic joint from Tendon to Mimic API

Add Articulation to root joint when fixed base

code format

fix symlink message
  • Loading branch information
hmazhar-nv authored and rgasoto committed May 23, 2024
1 parent f1d76eb commit 5e0e9b4
Show file tree
Hide file tree
Showing 63 changed files with 5,847 additions and 360 deletions.
68 changes: 68 additions & 0 deletions .clang-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
AccessModifierOffset: -4
AlignAfterOpenBracket: Align
AlignConsecutiveAssignments: false
AlignConsecutiveDeclarations: false
AlignEscapedNewlinesLeft: false
AlignTrailingComments: false
AllowAllParametersOfDeclarationOnNextLine: true
AllowShortFunctionsOnASingleLine: false
AllowShortIfStatementsOnASingleLine: false
AllowShortCaseLabelsOnASingleLine : false
AllowShortLoopsOnASingleLine: false
AlwaysBreakAfterDefinitionReturnType: false
AlwaysBreakBeforeMultilineStrings: true
AlwaysBreakTemplateDeclarations: true
BinPackArguments: true
BinPackParameters: false
BreakBeforeBinaryOperators: false
BreakBeforeBraces: Allman
BreakBeforeTernaryOperators: false
BreakConstructorInitializersBeforeComma: false
BreakStringLiterals: false
ColumnLimit: 120
CommentPragmas: ''
ConstructorInitializerAllOnOneLineOrOnePerLine: true
ConstructorInitializerIndentWidth: 4
ContinuationIndentWidth: 4
Cpp11BracedListStyle: false
DerivePointerBinding: false
FixNamespaceComments: false
IndentCaseLabels: false
IndentPPDirectives: AfterHash
IndentFunctionDeclarationAfterType: false
IndentWidth: 4
SortIncludes: true
IncludeCategories:
- Regex: '<carb\/.+>'
Priority: 2
- Regex: '<[[:alnum:]_.]+>'
Priority: 4
- Regex: '<[[:alnum:]_.\/]+>'
Priority: 3
- Regex: '".*"'
Priority: 1
IncludeBlocks: Regroup
Language: Cpp
MaxEmptyLinesToKeep: 2
NamespaceIndentation: None
ObjCSpaceAfterProperty: true
ObjCSpaceBeforeProtocolList: true
PenaltyBreakBeforeFirstCallParameter: 0
PenaltyBreakComment: 1
PenaltyBreakFirstLessLess: 0
PenaltyBreakString: 1
PenaltyExcessCharacter: 10
PenaltyReturnTypeOnItsOwnLine: 1000
PointerAlignment: Left
SpaceBeforeAssignmentOperators: true
SpaceBeforeParens: ControlStatements
SpaceInEmptyParentheses: false
SpacesBeforeTrailingComments: 1
SpacesInAngles: false
SpacesInCStyleCastParentheses: false
SpacesInContainerLiterals: false
SpacesInParentheses: false
Standard: Cpp11
ReflowComments: true
TabWidth: 4
UseTab: Never
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
# All folders starting with _ are local.
_*/

.cache
.local
# Compiled python files.
*.py[cod]

# Visual Studio files.
/.vs
**/.vscode/ipch
.lastformat
.lastverify

# macOS files.
.DS_Store
Expand Down
Loading

0 comments on commit 5e0e9b4

Please sign in to comment.