Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
triangle-patterns
Advanced tools
Draw triangle patterns on canvas or export to SVG.
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>
{
//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
Draw triangle patterns on canvas or export to SVG
The npm package triangle-patterns receives a total of 3 weekly downloads. As such, triangle-patterns popularity was classified as not popular.
We found that triangle-patterns demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.