restructure app code for modularizing and organization#49
Merged
skim0119 merged 1 commit intoApr 15, 2026
Conversation
This was referenced Apr 12, 2026
Merged
Collaborator
Author
This was referenced Apr 12, 2026
Merged
skim0119
marked this pull request as ready for review
April 12, 2026 22:35
skim0119
force-pushed
the
04-12-restructure_app_code_for_modularizing_and_organization
branch
from
April 12, 2026 22:45
843c3a4 to
9d9d51f
Compare
skim0119
force-pushed
the
04-12-math-utility
branch
from
April 15, 2026 01:51
0f5f379 to
93e1add
Compare
skim0119
force-pushed
the
04-12-restructure_app_code_for_modularizing_and_organization
branch
from
April 15, 2026 01:52
9d9d51f to
6fe4b7e
Compare
skim0119
force-pushed
the
04-12-restructure_app_code_for_modularizing_and_organization
branch
from
April 15, 2026 02:01
6fe4b7e to
d2774b8
Compare
skim0119
force-pushed
the
graphite-base/49
branch
from
April 15, 2026 02:01
93e1add to
5f8d930
Compare
graphite-app
Bot
changed the base branch from
graphite-base/49
to
meta2quest-integration
April 15, 2026 02:01
skim0119
force-pushed
the
04-12-restructure_app_code_for_modularizing_and_organization
branch
from
April 15, 2026 02:01
d2774b8 to
67d797b
Compare
Collaborator
Author
skim0119
deleted the
04-12-restructure_app_code_for_modularizing_and_organization
branch
April 15, 2026 02:14
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.

TL;DR
Refactored the VR client application by extracting the main app logic into modular components with proper configuration management and state handling.
What changed?
app.jsinto a newcreateAppfactory function inapp/create_app.jsapp/config.jsfor window and runtime configuration, andapp/state.jsfor application state managemententities/rod/arm_geometry.jswith support for "segmented-pipe" and "torus-stack" representationsHow to test?
Why make this change?
This refactoring improves code maintainability and modularity by separating concerns into distinct modules. The new structure makes the codebase more testable, easier to extend, and provides better organization for configuration management and state handling. The addition of comprehensive arm geometry rendering and improved input handling enhances the VR experience functionality.