1.4 KiB
1.4 KiB
title |
---|
Pattern.sampleOption() |
A pattern's sampleOption()
method will sample a given option,
which means to draft it in different iterations while adjusting the input value
of the given option.
The practical implementation varies based on the type of option:
- For options that are an object with a min and max property, 10 steps will be sampled, between min and max
- For options that are a numeric value (constants), 10 steps will be sampled between 90% and 110% of the value
- For options with a list of options, each option in the list will be sampled
This method is chainable as it returns the Pattern object
Anchor your samples
If you add a point named anchor
to your pattern part, the different samples
will be anchored on this point.
In other words, for each sample, the anchor point will be kept in the same location.
Pattern.sampleOption() signature
Pattern pattern.sampleOption(string option)
Pattern.sampleOption() example
import Aaron from "@freesewing/aaron"
import models from "@freesewing/models"
const pattern = new aaron({
measurements: models.manSize38
})
const svg = pattern.sampleOption("necklineDrop").render()