Skip to content

vasturiano/three-fatline

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
December 27, 2022 00:03
March 17, 2023 10:39
April 14, 2023 23:39
April 14, 2023 23:39

three-fatline

NPM package Build Size NPM Downloads

A modularized version of https://github.com/mrdoob/three.js/blob/master/examples/js/lines/.

See the example (source)

Usage Example:

import { Line2, LineGeometry, LineMaterial } from 'three-fatline';

const geometry = new LineGeometry();
geometry.setPositions([-160, 200, 0, 0, -200, 0, 160, 200, 0]); // [ x1, y1, z1,  x2, y2, z2, ... ] format

const material = new LineMaterial({
  color: 'red',
  linewidth: 10, // px
  resolution: new THREE.Vector2(640, 480) // resolution of the viewport
  // dashed, dashScale, dashSize, gapSize
});

const myLine = new Line2(geometry, material);

myLine.computeLineDistances();