Giter Site home page Giter Site logo

node-3d / deps-freeimage-raub Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 2.0 31.2 MB

Binaries and headers for FreeImage-dependent compilation

Home Page: https://github.com/node-3d/node-3d

License: MIT License

JavaScript 100.00%
freeimage binary node-3d lib headers native gyp image

deps-freeimage-raub's Introduction

Node3D

NPM ESLint Test

npm i -s 3d-core-raub

Node3D

Desktop 3D applications with Node.js and OpenGL.

  • WebGL-like interface. Real OpenGL though.
  • Three.js compatible environment.
  • Use node modules and compiled addons: CUDA, OpenCL, etc.
  • Window control. Multiwindow applications.
  • Read/write files.
  • Crossplatform: Linux x64, Linux ARM, MacOS x64, Windows x64.

Example

Compatibility with three.js allows porting the existing JS code. The real OpenGL backend is used (not ANGLE). So it is possible to use the GL resource IDs to setup interoperation with CUDA or OpenCL. This is the most important feature of this project and why it was created in the first place.

It is quite possible to create a fully-features apps and games using this framework. For example, see Space Simulation Toolkit.

Quick start

  1. Setup the project directory:

    mkdir my-project
    cd my-project
    npm init -y
    npm i -s 3d-core-raub three
    touch index.js
  2. Paste the code and see if it works:

    const three = require('three');
    const { init, addThreeHelpers } = require('3d-core-raub');
    
    const { doc, gl, requestAnimationFrame } = init({ isGles3: true });
    addThreeHelpers(three, gl);
    
    const renderer = new three.WebGLRenderer();
    renderer.setPixelRatio( doc.devicePixelRatio );
    renderer.setSize( doc.innerWidth, doc.innerHeight );
    
    const camera = new three.PerspectiveCamera(70, doc.innerWidth / doc.innerHeight, 1, 1000);
    camera.position.z = 2;
    const scene = new three.Scene();
    
    const geometry = new three.BoxGeometry();
    const material = new three.MeshBasicMaterial({ color: 0xFACE8D });
    const mesh = new three.Mesh( geometry, material );
    scene.add(mesh);
    
    doc.addEventListener('resize', () => {
    	camera.aspect = doc.innerWidth / doc.innerHeight;
    	camera.updateProjectionMatrix();
    	renderer.setSize(doc.innerWidth, doc.innerHeight);
    });
    
    const animate = () => {
    	requestAnimationFrame(animate);
    	const time = Date.now();
    	mesh.rotation.x = time * 0.0005;
    	mesh.rotation.y = time * 0.001;
    	
    	renderer.render(scene, camera);
    };
    
    animate();
  3. See docs and examples: 3d-core-raub.

  4. Take a look at Three.js examples.

Node3D Modules

  1. Dependency - carries one or more precompiled binary and/or C++ headers.

  2. Addon - provides native bindings.

  3. Plugin - a high-level Node3D module for extending the 3d-core features. For example:

    import { init, addThreeHelpers } from '3d-core-raub';
    import { init as initQml } from '3d-qml-raub';
    const __dirname = dirname(fileURLToPath(import.meta.url));
    const {
    	doc, Image: Img, gl, glfw,
    } = init({
    	isGles3: true, isWebGL2: true, mode: 'borderless',
    });
    addThreeHelpers(three, gl);
    const {
    	QmlOverlay, Property, Method, View, loop, release, textureFromId,
    } = initQml({ doc, gl, cwd: __dirname, three });
  4. Other:

Contributing to Node3D

Bugs and enhancements are tracked as GitHub issues. You can also create an issue on a specific repository of Node3D.

Issues

  • Use a clear and descriptive title.
  • Describe the desired enhancement / problem.
  • Provide examples to demonstrate the issue.
  • If the problem involves a crash, provide its trace log.

Pull Requests

  • Do not include issue numbers in the PR title.
  • Commits use the present tense ("Add feature" not "Added feature").
  • Commits use the imperative mood ("Move cursor to..." not "Moves cursor to...").
  • File System
    • Only lowercase in file/directory names.
    • Words are separated with dashes.
    • If there is an empty directory to be kept, place an empty .keep file inside.
    • Use SemVer versioning pattern.

License

Node3D can be used commercially. You don't have to pay for Node3D or any of its third-party libraries.

Node3D modules have their own code licensed under MIT, meaning "I've just put it here, do what you want, have fun". Some modules have separately licensed third-party software in them. For instance, deps-freeimage-raub carries the FreeImage binaries and headers, and those are the property of their respective owners, and are licensed under FIPL terms (but free to use anyway).

All such cases are explained in README.md per project in question.

deps-freeimage-raub's People

Contributors

raub avatar

Watchers

 avatar  avatar

deps-freeimage-raub's Issues

Missing libjpeg.so.8

Hello @raub !
Thanks for the great effort you're doing on this suite.
Just found an issue running a project in my CentOS lately in which looks like there's a missing dependency

Error: libjpeg.so.8: cannot open shared object file: No such file or directory
    at Object.Module._extensions..node (internal/modules/cjs/loader.js:1122:18)
    at Module.load (internal/modules/cjs/loader.js:928:32)
    at Function.Module._load (internal/modules/cjs/loader.js:769:14)
    at Module.require (internal/modules/cjs/loader.js:952:19)
    at require (internal/modules/cjs/helpers.js:88:18)
    at Object.<anonymous> (/home/erivera/image-service/node_modules/image-raub/core.js:10:14)

After inspecting the dependencies from deps-freeimage, it actually has libjpeg.so.62, but it's missing libjpeg.so.8. Something curious is that in an older version of the package the dependency is there. The issue is fixed if I copy/paste the missing lib.
Currently testing on

NAME="CentOS Linux"
VERSION="7 (Core)"

Not sure if this is the right place to raise the issue or if I should've created it on the image-raub project.
Hope you can take a look onto this.
Thanks!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.