Giter VIP home page Giter VIP logo

Comments (7)

nical avatar nical commented on August 17, 2024

Why not. We haven't needed something like this so far but it's not a big burden to add and maintain. Is it something you need in your projects?

from euclid.

ua-kxie avatar ua-kxie commented on August 17, 2024

yes, I'm using an inclusive contains. Basically to detect if the cursor is on top of a region, but the cursor snaps to a grid.

image

I've since impl'd this in a trait extension and it works really well, but perhaps others may find this useful as well

from euclid.

kyp44 avatar kyp44 commented on August 17, 2024

I have written something similar, except that instead of just creating an inclusive version of contains I have associated functions:

pub trait BoxInclusive {
  type Point;
  
  fn new_inclusive(min: Self::Point, max: Self::Point) -> Self;
  
  fn from_points_inclusive<I>(points: I) -> Self
  where
      I: IntoIterator,
      I::Item: Borrow<Self::Point>;
}

These simply create a normal box, then extend the max point by one in every dimension so that the max point itself is contained.

EDIT: I just submitted a PR for something unrelated, so I already have the project forked. I'd be happy to issue another PR for these inclusive box methods if there is interest from the maintainers in adding them to the box types directly.

from euclid.

nical avatar nical commented on August 17, 2024

I'm happy to take a PR for this if you want to make one.

from euclid.

ua-kxie avatar ua-kxie commented on August 17, 2024

These simply create a normal box, then extend the max point by one in every dimension so that the max point itself is contained.

This sounds very much like what I did, but wouldn't it be better to just have contains_inclusive functions with the > replaced with >= from performance and aesthetics considerations?

from euclid.

kyp44 avatar kyp44 commented on August 17, 2024

I have a need to create and use inclusive boxes without even necessarily ever using the contains method. Whatever approach the maintainers prefer is what we should go with.

from euclid.

nical avatar nical commented on August 17, 2024

Adding contains_inclusive sounds good to me.

from euclid.

Related Issues (20)

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.