Skip to main content

Find edge-to-edge and edge-to-surface joints of planar polygons

Project description

jointfinder

This package finds edge-to-edge and edge-to-surface joints of planar polygons.

Quickstart

This package accepts list of dictionaries as input. Each dictionary should have these elements:

  • name part name, numerical
  • points sequential points that make up a polygon in 3D cartesian coordinates, all points must be on a same plane (minimum 3 unique points per polygon)
  • plane (optional) plane unit vector (left hand thumb direction, sequential points being the fingers)
  • depth (optional, default: 0) polygon's thickness All scalars must be integer or float

Create test polygons (squares).

polygons = []

# polygon name is #42
polygons += [{'name': 42, 
              'points': [[0, 0, 0], [0, 20, 0], [20, 20, 0], [20, 0, 0]], 
              'depth': 1}]

# polygon name is #43
polygons += [{'name': 43, 
              'points': [[20, 0, 0], [20, 20, 0], [40, 20, 0], [40, 0, 0]], 
              'depth': 1}]

Create JointFinder object. polygons input is tabulated as pandas dataframe. Accessible as object property df. Refer to pandas for more information on pandas.

from jointfinder import jf

JF = jf.JointFinder(polygons)
JF.df

two squares df

Use plotting tool from util to view input polygons.

from jointfinder import util

util.plot(JF.df)

two squares plot

Use find_joint() object function to run for solution.

joints = JF.find_joint()
joints

two squares output

Output is pandas dataframe. Suffices A and B in columns indicate indices, which polygon makes joint with which other polygon. Polygon A's edge makes a joint with polygon B's edge or surface. Each dataframe row indicates where a joint exists (x0, y0, z0 to x1, y1, z1). Column type indicates if it is a butt joint (1: edge to edge) or t-joint (0: edge to surface).

Dataframe as Input

Alternatively, users can create their dataframe themselves (or parse to from other sources) to input directly to JointFinder as it also accepts pandas dataframe as input (in addition to list of dictionaries). Do take note that the format must follow convention of object property df.

To simulate, use util.create_dummy_block() for test dataframe.

df = util.create_dummy_block()
util.plot(df)

one block plot

Similarly, create JointFinder object with test dataframe then run find_joint() object function.

JF = jf.JointFinder(df)
joints = JF.find_joint()
joints

one block output

Default test dataframe has three squares that make up a block with t-joints. To create more, pass number of rows and columns as x and y arguments to tile them.

E.g. util.create_dummy_block(x=2, y=1) creates blocks tiled in 2 x 1.

2x1 block plot

Below is example of 50 x 50 blocks.

df = util.create_dummy_block(x=50, y=50)
JF = jf.JointFinder(df)
joints = JF.find_joint()
joints

50x50 block output

Handling Large Dataframe

It is advised to run the module's jf directly from shell or console to better benefit from computing concurrency while handling large dataframe. Prior to running, the dataframe location must be first pickled (made persistent). Alternatively, it may also be accessed from memory location which user must find out manually. Input system argument dpath to indicate where the pickled dataframe is or from memory. Output will be saved in path stated in tpath.

Use util's save_df() function to create pickle, pass dataframe and (path if otherwise desired and) file name as arguments.

util.save_df(df, 'test.pkl')

Run module's jf from shell or console (use ! only if running from jupyter. See jupyter from more information on jupyter).

!python -m jointfinder.jf dpath=test.pkl tpath=test_result.pkl

50x50 block output shell

As output is also pickled, use util.load_df() to load dataframe back to a variable. User may also export the result to other formats such as csv.

result = util.load_df('test_result.pkl')
result.to_csv('test_result.csv')

About

Beta version, v1.1.x, has limited features. Full release is from v1.2.0 onwards. This package uses other dependencies (pandas, numpy, numba, tqdm, matplotlib).

Email: zhiyung.tay@singaporetech.edu.sg; januwar.hadi@singaporetech.edu.sg

Singapore Institute of Technology.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

jointfinder-1.1.7-py3-none-any.whl (29.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page