Skip to content Skip to sidebar Skip to footer
Showing posts with the label Geometry

Finding If A Triangle Is Right-angled Or Not

This Python 3 based function returns if a triangle is or isn't right-angled given side lengths … Read more Finding If A Triangle Is Right-angled Or Not

Minimal Surface Solution In Python

I have a set of 3D points defining a 3D contour. What I want to do is to obtain the minimal surface… Read more Minimal Surface Solution In Python

Removing Duplicate Geometries In Shapely

I have a list of Shapely polygons. From that list I want to extract only unique polygons removing t… Read more Removing Duplicate Geometries In Shapely

How To Map Rectangle Image To Quadrilateral With Pil?

Python PIL library allows me to map any quadrilateral in an image to rectangle using im.transform(s… Read more How To Map Rectangle Image To Quadrilateral With Pil?

Fit Curve-spline To 3d Point Cloud

Objective I have a 3D facet model (e.g. .off file) which can for example look like a pipe/tube (see… Read more Fit Curve-spline To 3d Point Cloud

Detecting Rectangle Collision With A Circle

I have a Circle with a center point (Center_X, Center_Y) and I am detecting if a rectangle falls in… Read more Detecting Rectangle Collision With A Circle