-
Notifications
You must be signed in to change notification settings - Fork 266
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
react and xtk #205
Comments
Looks like a webpack warning? Are you using webpack for your project?
…On Mon, Jul 30, 2018, 19:11 malinged ***@***.***> wrote:
Ive been using the XTK library for some scientific 3D modeling
applications, and I am trying to use it in react. The library works
flawlessly on its own in JavaScript but when I try to implement it in react
it tells me that I need a loader for an unspecified file type. How would I
figure out what the file type is? and why is this issue happening. package
docs: https://www.npmjs.com/package/xtk
here is the implementation of xtk in code:
var r = new window.X.renderer3D();
//r.container = 'r';
r.init();
// create a mesh from a .vtk file
var skull = new window.X.mesh();
skull.file = 'http://x.babymri.org/?avf.vtk';
// add the object
r.window.X.add(skull);
// .. and render it
r.render();
And here is the error message I am getting:
[image: image]
<https://user-images.githubusercontent.com/35342569/43412070-ec1c8644-93e0-11e8-8940-97f264e0fba9.png>
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#205>, or mute the thread
<https://github.com/notifications/unsubscribe-auth/ASe-F0ISS1ORexkl6PV62Ihg5la-uxEoks5uLz5IgaJpZM4VmzxB>
.
|
Hi, This might be happening due to not having rules defined in your webpack to load a certain file type. Kindly check after adding this to your webpack config rules: test: /.(dcm)(?.*)?$/, change the file extension as per your need. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ive been using the XTK library for some scientific 3D modeling applications, and I am trying to use it in react. The library works flawlessly on its own in JavaScript but when I try to implement it in react it tells me that I need a loader for an unspecified file type. How would I figure out what the file type is? and why is this issue happening. package docs: https://www.npmjs.com/package/xtk
here is the implementation of xtk in code:
And here is the error message I am getting:
The text was updated successfully, but these errors were encountered: