
Security News
Oxlint Introduces Type-Aware Linting Preview
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
A 3D geometry library that includes Point, Vector, Line, Plane, Coordinate System and Transformation objects.
Geom is not intended for high-performance/volume geometric calculations but rather to simplify geometric calculations.
gem install geom
Below is an example showing some of the features
p1 = Geom::Point.new(1,1,0)
p2 = Geom::Point.new(9,3,0)
v1 = Geom::Vector.new(0,1,0)
p3 = p1.translate(v1, 10)
d1 = p2.distance_to_point(p3)
pnts = [p1, p2, p3]
ave_pnt = Geom::Point.average(pnts)
pln1 = Geom::Plane.new(p1,p2,p3)
p4 = Geom::Point.new(0,0,-10).project_onto_plane(pln1)
v2 = pln1.normal
ln1 = Geom::Line.new(p1,p2)
p5 = p3.project_onto_line(ln1)
rcs = Geom::RectangularCoordinateSystem.new_from_xvector_and_xyplane(p1,v1, v2)
t1 = Geom::Transformation.new(rcs)
p6 = p3.transform(rcs)
MIT License. Copyright 2011 Ennova.
FAQs
Unknown package
We found that geom demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.