-
Notifications
You must be signed in to change notification settings - Fork 53
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
Quadrature visualization support for glvis-js #314
Conversation
I think this fixed it? To test git clone [email protected]:GLVis/glvis-js.git
cd glvis-js
git checkout ci-build-10626571587
open examples/basic.html # or open with a browser
# open glvis-data/streams/quadrature-lor.saved and press Q |
I can confirm |
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.
Yes, works for me too 😉 🚀 I agree it would be better to unify the code with glvis.cpp
, but there are some subtleties different, so it is not that easy.
However, I noticed that updateStream()
has a hardcoded check for solution
, so that needs to be fixed for mesh and quadrature 🤔
|
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.
LGTM, the check in updateStream
was superfluous, I think 😉.
Eventually, we should refactor
aux_js.cpp
a bit so that there isn't so much repeated code withglvis.cpp
. For now, this is just following the same design pattern to see if we can get quadrature support inglvis-js
.