Coder Social home page Coder Social logo

embree.net's Introduction

                                   Embree.NET                                   
                                   ==========                                   

Embree.NET is the unofficial C# wrapper for the Embree collection of ray tracing
kernels, and runs under the .NET and Mono runtimes in both 32- and 64-bit modes.

 ===== Introduction ===========================================================

Embree.NET implements the concept of scenes, geometries, meshes and instances in
an OOP fashion, building on top of Embree's interface and adding various runtime
and type checks to make the library as easy and fun to use as possible from C#.

Embree.NET provides the back-end to a renderer, by providing an abstraction of a
scene, composed of one or more instances of "geometries" (which are themselves a
collection of meshes). We suggest using composition to "wrap" geometry instances
over your own "model" or "object" type which can then provide functionality such
as per-mesh materials, textures, and so on - because the wrapper is designed for
this kind of interop, you are able (after some minor work) to seamlessly use any
classes you may have already written with Embree.NET, fluently and elegantly.

A sample renderer is provided with the wrapper, and shows the main ideas used by
the API and how to use the wrapper in your code. It does not demonstrate all the
features of the wrapper, however, and must primarily be used to "get a feel" for
the wrapper and how it works. Note the sample may change considerably over time.

Please decompress the sample models in Sample/Models before building the sample,
and check out the ref.png image to see the output produced by the sample itself.

 ===== Changelog ==============================================================

- July 5 2014

  * improved performance by a large factor, by passing the ray type as a generic
    type and exposing both the raw "ray packet" structure, along with a friendly
    ray-geometry intersection structure that can be used directly

- May 19 2014

  * fixed a bug in the sample that prevented it running on other cultures
    (thanks to @davepermen for this bugfix!)

- March 3 2014

  * new benchmark project which tests the performance of the various ray tracing
    methods (the geometry modification benchmarks are a work in progress)

- March 2 2014

  * initial release

 ===== Features (as of Embree 2.2) ============================================

  [x] Geometry instancing
      - supported natively and actually part of how the wrapper is designed;
      - for consistency, the wrapper does not support non-instanced geometry
        (i.e. the topmost scene contains only instanced geometry), where the
        Embree library does - we do not expect this to be a problem;

  [x] Linear motion blur (t = [0, 1])
      - supported, and the wrapper allows per-ray time values;

  [x] Packet ray tracing (1, 4, 8, 16 rays)
      - fully supported by the wrapper, however because Embree does not warn
        about unsupported CPU's (for instance, using 16-ray packet mode when
        you do not have a Xeon processor) we cannot reliably check for error
        conditions such as these, and expect this to be fixed eventually;

  [ ] Buffer sharing
      - not supported at this time;

  [ ] User-defined geometry
      - not supported at this time;

  [ ] Filter functions
      - not supported at this time;

As usual, any and all contributions are welcome!

 ===== Legal ==================================================================

The Embree library can be found at http://embree.github.io/. This product is not
affiliated with or endorsed by Intel(R) Corporation. Refer to the LICENSE file.

====== Build and Package Nuget Instructions ===================================

Download 32 and 64 bit versions of Embree 2.15
https://github.com/embree/embree/releases/download/v2.15.0/embree-2.15.0.win32.windows.zip
https://github.com/embree/embree/releases/download/v2.15.0/embree-2.15.0.x64.windows.zip

Extract to project root

+ parent folder
|- Benchmark
|- Libray
|- Sample
|- embree-2.15.0.win32
|- embree-2.15.0.x64

Update version number in Library\Library.nuspec if desired

Using "MSBuild Command Prompt for VS2015" cd to project directory and run build.bat

Upload Library\Embree.NET.*.nupkg to nuget.org

embree.net's People

Contributors

amenzies avatar davepermen avatar tomcrypto avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

embree.net's Issues

Error running sample code

Hi, this project is a great help for c# developers. I would like to use Embree in a c# project. However I am having some problems using the sample code.

_Embree.NET Sample

[+] 64-bit mode.
[+] Building a test scene.
[!] Error: An invalid operation was attempted on an Embree object.

========= STACK TRACE =========

at Embree.RTC.CheckLastError() in s:\Raytracer\Embree.NET-master\Library\Native.cs:line 92
at Embree.Scene`1.Commit() in s:\Raytracer\Embree.NET-master\Library\Embree.cs:line 257
at Sample.Renderer..ctor() in s:\Raytracer\Embree.NET-master\Sample\Program.cs:line 179
at Sample.Program.Main(String[] args) in s:\Raytracer\Embree.NET-master\Sample\Program.cs:line 325_

Could you help me to figure this out? Thank you.

MathLibrary Matrix Invert is wrong

It should be (Something like):

public static Matrix Invert(Matrix mat)
        {
            // Work out determinant of the 3x3 submatrix.
            var det = mat.U.X * (mat.V.Y * mat.W.Z - mat.W.Y * mat.V.Z)
                    - mat.V.X * (mat.W.Z * mat.U.Y - mat.W.Y * mat.U.Z)
                    + mat.W.X * (mat.U.Y * mat.V.Z - mat.V.Y * mat.U.Z);

            if (Math.Abs(det) < 0)
                throw new ArgumentException("Matrix is not invertible");


            float ux = mat.V.Y * mat.W.Z - mat.V.Z * mat.W.Y;
            float uy = mat.W.Y * mat.U.Z - mat.U.Y * mat.W.Z;
            float uz = mat.U.Y * mat.V.Z - mat.U.Z * mat.V.Y;
            float vx = mat.W.X * mat.V.Z - mat.V.X * mat.W.Z;
            float vy = mat.U.X * mat.W.Z - mat.W.X * mat.U.Z;
            float vz = mat.V.X * mat.U.Z - mat.U.X * mat.V.Z;
            float wx = mat.V.X * mat.W.Y - mat.W.X * mat.V.Y;
            float wy = mat.W.X * mat.U.Y - mat.U.X * mat.W.Y;
            float wz = mat.U.X * mat.V.Y - mat.V.X * mat.U.Y;

            Vector inv_u = new Vector(ux, uy, uz);
            Vector inv_v = new Vector(vx, vy, vz);
            Vector inv_w = new Vector(wx, wy, wz);

            // Transform the translation column by this inverse matrix.
            var inv_t = -(mat.T.X * inv_u + mat.T.Y * inv_v + mat.T.Z * inv_w);

            return new Matrix(inv_u, inv_v, inv_w, inv_t);
        }

Missing .dlls

The following files appear to be missing in the download zip:
embree.dll, tbb.dll, tbbmalloc.dll

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.