Git Product home page Git Product logo

morton's People

Contributors

bz2 avatar reiniermaas avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

apendleton bz2

morton's Issues

64-bit interleave

#[inline]
pub fn interleave_morton_64(x: u16, y: u16) -> u32 {
    let x = x as u64;
    let y = y as u64;

    let z = y << 32 | x;
    let z = (z | (z << 8)) & 0x00FF00FF_00FF00FF;
    let z = (z | (z << 4)) & 0x0F0F0F0F_0F0F0F0F;
    let z = (z | (z << 2)) & 0x33333333_33333333;
    let z = (z | (z << 1)) & 0x55555555_55555555;

    let z = z | (z >> 31);
    z as u32
}

(Realized only after writing this that maybe there's a crate already...)

Create / Extend the documentation

Rust is known for its great documentation. We would like to have good documentation because documentation drives adoption of the language. The current README.md is quite empty and this could be resolved.

Make Travis work

The setup on the side of Travis has been done some 3 years ago. The PR for adding the correct .travis.yml file never completed. We could base it on zero-to-production continuous-integration.

In a PR there is a working version of .travis.yml. It would be good to test on stable, beta and nightly channels.

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.