Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix circular dependency import at fromMovingPoints file #97

Merged
merged 3 commits into from
Mar 3, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/fromMovingPoints.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { translate } from './translate'
import { applyToPoint } from './applyToPoint'
import { scale, rotate, compose } from './index'
export { rotate } from './rotate'
export { scale } from './scale'
export { compose } from './transform'
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I understand this issue, but I think that the right word here is import rather then export

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, right 🙃 Fixed!


// https://manivannan-ai.medium.com/find-the-angle-between-three-points-from-2d-using-python-348c513e2cd

Expand Down