Skip to content

Fixed Geometry Orientation Feature - #1901

Open
ishika-negi wants to merge 1 commit into
TheAlgorithms:masterfrom
ishika-negi:feature/Geometry-Orientation
Open

Fixed Geometry Orientation Feature#1901
ishika-negi wants to merge 1 commit into
TheAlgorithms:masterfrom
ishika-negi:feature/Geometry-Orientation

Conversation

@ishika-negi

Copy link
Copy Markdown

What does this PR do?:

  • Add an algorithm?
  • Fix a bug or typo in an existing algorithm?
  • Documentation change?

Added a JavaScript implementation of the Geometry Orientation algorithm.
The function determines the orientation of three points (a, b, c) in a 2D plane.
It uses the cross-product method to compute orientation.
Returns:
1 → counterclockwise orientation
-1 → clockwise orientation
0 → collinear points
Helps in computational geometry problems like convex hull and line intersection.

Checklist:

  • I have read CONTRIBUTING.md.
  • This pull request is all my own work -- I have not plagiarized.
  • I know that pull requests will not be merged if they fail the automated tests.
  • This PR only changes one algorithm file. To ease review, please open separate PRs for separate algorithms.
  • All new JavaScript files are placed inside an existing directory.
  • All filenames should use the UpperCamelCase (PascalCase) style. There should be no spaces in filenames.
    Example:UserProfile.js is allowed but userprofile.js,Userprofile.js,user-Profile.js,userProfile.js are not
  • All new algorithms have a URL in their comments that points to Wikipedia or another similar explanation.
  • If this pull request resolves one or more open issues then the commit message contains Fixes: #1815. this format

@codecov-commenter

codecov-commenter commented May 29, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 90.90909% with 1 line in your changes missing coverage. Please review.
✅ Project coverage is 85.91%. Comparing base (5c39e87) to head (7fc21e0).

Files with missing linesPatch %Lines
String/GenerateGUID.js0.00%1 Missing ⚠️
Additional details and impacted files
@@ Coverage Diff @@## master #1901 +/- ##
=======================================
Coverage 85.91% 85.91% =======================================
Files 379 379 Lines 19778 19779 +1 Branches 3016 3016 =======================================
+ Hits 16993 16994 +1 
Misses 2785 2785 

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants

@ishika-negi@codecov-commenter