New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

triangle-patterns

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

triangle-patterns

Draw triangle patterns on canvas or export to SVG

  • 1.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
decreased by-28.57%
Maintainers
1
Weekly downloads
 
Created
Source

triangle patterns

canvas

Draw triangle patterns on canvas or export to SVG.

Usage

On canvas:

<canvas id="pattern" height="600" width="400"></canvas>
<script src="triangle-patterns.js"></script>
<script>
    const ctx = document.getElementById('pattern').getContext('2d');
    TrianglePattern({
        width: 600,
        height: 400,
    }).draw(ctx);
</script>

Export to SVG:

<script src="triangle-patterns.js"></script>
<script>
    const svg = TrianglePattern({
        width: 600,
        height: 400,
    }).svg();
    
    //...use svg...
</script>

Configuration

{
    //size of initial points mesh (horizontal and vertical)
    meshStepX: 35,
    meshStepY: 35,

    //random seed (same values gives same results)
    seed: 123456,

    //max point position deviation, percent
    variance: 0.05,

    //mesh mode colors
    meshColorStroke: 'black',
    meshColorFill: 'white',

    //color palettes: arrays of colors for horizontal and vertical scales
    //default ColorBrewer colors available: https://github.com/gka/chroma.js/blob/main/src/colors/colorbrewer.js
    //use them with TrianglePattern.colors property, for example:
    //colorsX: TrianglePattern.colors.PuBuGn
    colorsX: TrianglePattern.colors.Oranges,
    colorsY: TrianglePattern.colors.Purples,

    //randomize colors on x, y or both palettes
    colorRandomizePalette: TrianglePattern.randomizePalette.none,

    //flip colors on x, y or both palettes
    colorFlipPalette: TrianglePattern.flipPalette.none,

    //shift palette colors
    colorShiftPaletteX: 0,
    colorShiftPaletteY: 0,
        
    //mix ratio between horizontal and vertical scales
    colorMixRatio: 0.5,

    //use some color styles from TrianglePattern.styles property
    colorStyle: TrianglePattern.styles.default,
    colorStyleJitterIntensity: 0.15,
    colorStyleShadowsIntensity: 0.85,
    colorStyleShiningIntensity: 0.85,
    colorStyleSaturateIntensity: 0.85,

    colorMode: 'lrgb',
}

FAQs

Package last updated on 22 May 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc