-
-
Notifications
You must be signed in to change notification settings - Fork 234
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor vector3_t #1645 #1648
Open
Yogesh9000
wants to merge
54
commits into
f3d-app:master
Choose a base branch
from
Yogesh9000:feature/add-a-direction-type
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Refactor vector3_t #1645 #1648
Changes from 2 commits
Commits
Show all changes
54 commits
Select commit
Hold shift + click to select a range
06d661f
refactored vector3_t and added a naive parse function
Yogesh9000 1207b57
added a new option and updated struct vector3_t
Yogesh9000 e3572cf
vector3_t does not inherit from std::array now
Yogesh9000 9eb7747
added tests and related functions: currently build fails
Yogesh9000 d8e4ad9
added tests and related functions: currently build passes
Yogesh9000 f1b01d4
updated python bindings
Yogesh9000 efab6ad
removed unnecessary includes
Yogesh9000 eff24d8
minor fixes
Yogesh9000 6761e04
fix formating and python binding
Yogesh9000 b87313f
fix for f3d::vector3_t iterators
Yogesh9000 d6d4eaa
minor fix
Yogesh9000 7bcad39
added exception and other minor fixes
Yogesh9000 1d86b73
fixed formatting
Yogesh9000 47df654
fixed formatting
Yogesh9000 73feb45
fixed formatting
Yogesh9000 e34433b
fixed formatting
Yogesh9000 137de48
changed type from size_t to int
Yogesh9000 12ddb7b
Update library/public/types.h
Yogesh9000 f492392
Tests: Fix incorrect threshold in image comparisons (#1647)
mwestphal 1fda9e2
Deps: Require VTK 9.2.6 (#1649)
mwestphal b4fe960
Fix grid display on main axes (#1627)
rhysaelliott ca02c81
Add a meta importer (#1609)
mwestphal 849fe6a
Rename loader into scene (#1660)
mwestphal 6461dd5
Camera: Fix ResetCamera with camera index (#1662)
mwestphal 91b0743
CMake: Add a check for VTK_READER/VTK_IMPORTER in plugin CMake logic …
mwestphal 043e931
vtkext: Move vtkF3DRendererWithColoring into vtkF3DRenderer
mwestphal ce01a06
vtkext: Merge ConfigureColoringActorsProperties and ConfigureActorsPr…
mwestphal 2ffeeba
options: Use optional for edges and orthographic
mwestphal 9fb9c25
vtkext: Remove unused member
mwestphal 02837ed
Fix wasm bindings (#1666)
Meakk 7a810e5
Fix wasm grid rendering (#1667)
Meakk dae1295
Fix compatibility with VTK and glad (#1631)
Meakk 95c2624
CI: Fix nightly workflow (#1668)
mwestphal a86bf76
Disable external tests requiring a X server (#1671)
Meakk 9a22666
CI: Fixup nightly logic (#1673)
mwestphal 375b067
Improve quickstart guide (#1563)
stepperpig c36fab6
Clear scene before adding model in f3d-web (#1677)
Meakk 4c9bf90
Cleanup gitignore (#1679)
mwestphal ed0636a
Move coloring info logic into a dedicated handler (#1672)
mwestphal 52b0ce3
Doc: Fix many small issues (#1683)
mwestphal 9f60fda
log: Cleanup incorrect eol usages (#1684)
mwestphal 826a619
Test: Fix an issue with drop hdri tests (#1688)
mwestphal 71345ea
Test: Fix another interaction test (#1689)
mwestphal 54a26dd
VTK: Update sha (#1691)
mwestphal ccc0212
Testing: Fix an issue with SDK image testing (#1693)
mwestphal d754acc
Add a command API (#1680)
mwestphal 6484019
Interactor: Make SetViewOrbit not static (#1695)
mwestphal c76e3a6
don't add filename to window title if there's no file (#1699)
snoyer c3211f9
Add an interaction api (#1687)
mwestphal 19fe39d
Add interaction command for dropping files (#1701)
mwestphal 71af4dc
Patch VTK CMP0174 policy in CI (#1709)
Meakk 6330928
Add changes commented in the pr
Yogesh9000 1112b54
Format code
Yogesh9000 2a0eef1
Remove attribute F3D_EXPORT from struct type_creation_exception
Yogesh9000 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please add a test in TestSDKOption.cxx
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what am I supposed to here exactly. there doesn't seems to be test for other options in TestSDKOption.cxx
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TestSDKOptions.cxx test all types of options, you are adding a new type of option, you should test it.