Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7761599
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T14:10:38+00:00 2026-06-01T14:10:38+00:00

I have 2 sections, each section contains of 2 Points and each point has

  • 0

I have 2 sections, each section contains of 2 Points and each point has X and Y.
What is the best way to find the overlap between these 2 sections? (only on the X relevant here)

public class section
{
   double leftPoint;
   double rightPoint;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T14:10:39+00:00Added an answer on June 1, 2026 at 2:10 pm

    Here is example code to show you how to do it. I assume the two sections are (a_from, a_to) and (b_from, b_to) and set the resulting section to be (res_from, res_to). Also I only intersect the intervals on the x-axis as this seems to be what you want. The idea is that the results starts from the later of the two beginnings and ends at the earlier of the two ends.

    Point a_from, a_to;
    Point b_from, b_to;
    Point res_from =  new Point();
    Point res_to =  new Point();
    res_from.SetX(Math.max(a_from.getX(), b_from.getX()));
    res_to.SetX(Math.min(a_to.getX(), b_to.getX()));
    

    Note that if res_to.x < res_from.x There is no intersection at all.

    Also here I assume a_from.x <= a_to.x and b_from.x <= b_to.x which may not always be true. If it is not you have to calculate res_from.x as Math.max(Math.min(a_from.getX(), a_to.getX()), Math.min(b_from.getX(), b_to.getX()))

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have Segment class who contain 2 sections , each section contain 2 point
I have a UITableView with two sections: free and paid. Each section has a
I have a text file with several different sections. Each section has a header
I have a tableview, which has many sections. each section has just one cell.
I have an application with different sections. Each section is accessed through a domain.
I have a grouped table with 3 sections, each section with a title. The
Is there a way to have different Global Configurations for each section of articles?
I have a tableView with multiple sections. When a sections contains only one row,
I have a grouped table view that contains 3 sections and each row per
I have a table view with three sections. The first section contains custom cells

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.