Pattern.use()
The Pattern.use() method will load a open clothes plugin.
插件 are a way to extend a pattern's functionality.
For more details, refer to the plugin guide.
注意
This method is chainable as it returns the Pattern object
Pattern.use() signature
Pattern pattern.use(object plugin)
// or
Pattern pattern.use(object plugin, object plugin_data)
See the plugin guide for details on how to structure you plugin object.
Pattern.use() example
import { Aaron } from '@openclothes/aaron'
import { pluginTheme } from '@openclothes/plugin-theme'
// Load some public test measurements from the open clothes backend
const measurements = (
await (await fetch('https://backend3.open clothes.org/curated-sets/1.json')).json()
).measurements
const pattern = new Aaron({ measurements }).use(pluginTheme)
const svg = pattern.draft().render()