0.0.3 • Published 8 years ago
vue-fractals v0.0.3
vue-fractals
Implementation fractals with vue Vue.js
Demo
Installation
- with npm
npm i -S vue-fractalsUsage
<template>
<div id="app">
<menger-sponge :size="300" :iteration="2" :color="hsl(100, 0%, 50%)"/>
</div>
</template>
<script>
import { MengerSponge } from 'vue-fractals'
export default {
components: {
MengerSponge
}
}
</script>Components
MengerSponge
- DOM
- Canvas
- WebGL
| Property | Type | Default | Description |
|---|---|---|---|
| size | Number | 270 | Size in pixels |
| iteration | Number | 0 | *Value bigger than 3 can cause computer freeze |
| color | String | 'hsl(180, 0%, 50%)' | Support only HSL |
License
Copyright (c) 2018 VSymonenko