Coder Social home page Coder Social logo

brunetons-ocean's Issues

PlaneProjection doesn't generate correctly if the camera is pointed directly upwards or downwards

If the camera is pointed EXACTLY upwards or downwards, such that direction == Vector3(0,1,0) or Vector3(0,-1,0) then the projection will fail and the interpolation matrix is filled with NaN values.

This happens because of the following line of code:

Vector3 xaxis = Vector3.Cross(up, zaxis).normalized;

This should become the following code:

            Vector3 zaxis = (position - target).normalized;
            Vector3 xaxis = Vector3.Cross(up, zaxis).normalized;

            if (Mathf.Approximately(xaxis.magnitude, 0f))
            {
                up = Vector3.right;
                xaxis = Vector3.Cross(up, zaxis).normalized;

                if (Mathf.Approximately(xaxis.magnitude, 0f))
                {
                    up = Vector3.forward;
                    xaxis = Vector3.Cross(up, zaxis).normalized;
                }
            }

            Vector3 yaxis = Vector3.Cross(zaxis, xaxis);

Basically, if the cross of zaxis and up is a zero vector, then pick right arbitrarily. If THAT is still somehow 0, then pick forward. The extra check to forward isn't really necessary but it's the standard pattern for LookAt.

camera frustum projeection gride ripple effect

Hi,

Thanks for this wonderfull ocean. It's allot better than other i've used.

But i've mentioned there is a issue in the prjojected grid. I've mentioned that the grid moves with the camera itself, but does not stick to the position when it's drawn. So when you move around, you will see that the grid is moving with the camera. This causes a ripple effect somehow when moving around.

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.