npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

webwaspjs

v0.1.3

Published

A replica of the Rhino3D / Grasshopper plugin WASP by Andrea Rossi in Javascript.

Downloads

252

Readme


WaspJS is a JavaScript library (LICENSE HERE) designed to perform discrete aggregations on the Web.

This implementation is authored by Roger Winkler and builds upon the original concept of the python-based Grasshopper plug-in WASP by Andrea Rossi. For more information on WASP, visit the original WASP repository.

Demo

To get an idea of the library, you can play around with the demo. The code for the demo can be found in the test folder. Example datasets can be found in the public/examples folder.

Usage

Installation

You can install WaspJS via npm:

npm install webwaspjs

Documentation

Current Classes

The Visualizer class is used to visualize the aggregation and perform other operations. It utilizes Three.js, a popular JavaScript library for 3D graphics. Additionally, the three-mesh-bvh library is used for collision detection. The camera-controls library is employed to change the scene's up axis from Y (default in Three.js) to Z (default in Rhino).

The Aggregation class in holds the initial parts, rules, and the aggregated parts.

The Part class contains all relevant information to describe a part, including connections to other parts and colliders.

The Connection class represents a possible connection plane and holds its current status.

The Plane class is introduced to hold information similar to the logic of a Grasshopper plane. This is necessary because the concept of a plane in Rhino3D (origin, X- and Y-axis) does not exist in Three.js (a plane in Three.js is a plane surface).

The Collider class is used for checking collisions based on simplified geometries before adding the original geometry to the aggregation. For collision detection, the three-mesh-bvh library is used.

The Rule class defines which part and connection type can connect to which others.

License

Option 1: MIT

This project is licensed under the MIT License. See the LICENSE file for details.

This project is inspired by the original WASP software, which was developed in Python and is licensed under the GNU Lesser General Public License, Version 3, 29 June 2007. For more information on the original WASP software, visit the original WASP repository.

Option 2: LGPL

This project is licensed under the GNU Lesser General Public License, Version 3, 29 June 2007. See the LICENSE file for details.

This project is a reverse-engineered version of the original WASP software, which was developed in Python and is licensed under the GNU Lesser General Public License, Version 3, 29 June 2007. For more information on the original WASP software, visit the original WASP repository.

Contact

For any questions or feedback, get in touch via [email protected].