![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
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
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
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.