diff options
Diffstat (limited to 'js/data/pi')
-rwxr-xr-x | js/data/pi/pi-data.js | 141 |
1 files changed, 140 insertions, 1 deletions
diff --git a/js/data/pi/pi-data.js b/js/data/pi/pi-data.js index ba03c347..9d90aa3d 100755 --- a/js/data/pi/pi-data.js +++ b/js/data/pi/pi-data.js | |||
@@ -585,7 +585,146 @@ exports.PiData = Montage.create( Montage, { | |||
585 | ] | 585 | ] |
586 | } | 586 | } |
587 | ] | 587 | ] |
588 | } | 588 | }, |
589 | SubpathPi: { | ||
590 | value: [ | ||
591 | { | ||
592 | label: "Stroke", | ||
593 | |||
594 | Section: [ | ||
595 | [ | ||
596 | { | ||
597 | type : "color", | ||
598 | prop: "border", | ||
599 | id : "stroke" | ||
600 | }, | ||
601 | { | ||
602 | type : "color", | ||
603 | id : "fill", | ||
604 | prop: "background", | ||
605 | divider : true | ||
606 | } | ||
607 | ], | ||
608 | [ | ||
609 | { | ||
610 | type : "hottext", | ||
611 | id : "strokeSize", | ||
612 | prop : "strokeSize", | ||
613 | label : "Stroke", | ||
614 | valueMutator: parseFloat, | ||
615 | min : 1, | ||
616 | max : 100, | ||
617 | value : 1, | ||
618 | unit : "px", | ||
619 | acceptableUnits: ["pt", "px"] | ||
620 | } | ||
621 | ] | ||
622 | ] | ||
623 | } | ||
624 | ] | ||
625 | }, | ||
626 | BrushStrokePi: { | ||
627 | value: [ | ||
628 | { | ||
629 | label: "Stroke", | ||
630 | |||
631 | Section: [ | ||
632 | [ | ||
633 | { | ||
634 | type : "color", | ||
635 | prop: "border", | ||
636 | id : "stroke" | ||
637 | }, | ||
638 | { | ||
639 | type : "color", | ||
640 | id : "fill", | ||
641 | prop: "background", | ||
642 | visible : false, | ||
643 | divider : true | ||
644 | } | ||
645 | ], | ||
646 | [ | ||
647 | { | ||
648 | type : "hottext", | ||
649 | id : "strokeSize", | ||
650 | prop : "strokeSize", | ||
651 | label : "Stroke", | ||
652 | valueMutator: parseFloat, | ||
653 | min : 1, | ||
654 | max : 100, | ||
655 | value : 1, | ||
656 | unit : "px", | ||
657 | acceptableUnits: ["pt", "px"] | ||
658 | }, | ||
659 | { | ||
660 | type : "hottext", | ||
661 | id : "strokeHardness", | ||
662 | prop : "strokeHardness", | ||
663 | label : "Hardness", | ||
664 | valueMutator: parseFloat, | ||
665 | min : 0, | ||
666 | max : 100, | ||
667 | value : 100, | ||
668 | unit : "%", | ||
669 | acceptableUnits: ["%"] | ||
670 | } | ||
671 | ] | ||
672 | ] | ||
673 | }, | ||
674 | { | ||
675 | label: "Smoothing", | ||
676 | Section: [ | ||
677 | [ | ||
678 | { | ||
679 | type: "checkbox", | ||
680 | id: "doSmoothing", | ||
681 | prop: "doSmoothing", | ||
682 | defaultValue: false, | ||
683 | value: "Y/N", | ||
684 | checked: false | ||
685 | }, | ||
686 | { | ||
687 | type : "hottext", | ||
688 | id : "strokeSmoothing", | ||
689 | prop : "strokeSmoothing", | ||
690 | label : "Amount", | ||
691 | valueMutator: parseFloat, | ||
692 | min : 0, | ||
693 | max : 100, | ||
694 | value : 0 | ||
695 | } | ||
696 | ] | ||
697 | ] | ||
698 | }, | ||
699 | { | ||
700 | label: "Calligraphic", | ||
701 | Section: [ | ||
702 | [ | ||
703 | { | ||
704 | type: "checkbox", | ||
705 | id: "isCalligraphic", | ||
706 | prop: "isCalligraphic", | ||
707 | defaultValue: false, | ||
708 | value: "Y/N", | ||
709 | checked: false, | ||
710 | divider : true | ||
711 | }, | ||
712 | { | ||
713 | type : "hottext", | ||
714 | id : "strokeAngle", | ||
715 | prop : "strokeAngle", | ||
716 | label : "Angle", | ||
717 | valueMutator: parseFloat, | ||
718 | min : -90, | ||
719 | max : 90, | ||
720 | value : 0, | ||
721 | unit : "deg." | ||
722 | } | ||
723 | ] | ||
724 | ] | ||
725 | } | ||
726 | ] //value: [ | ||
727 | } //BrushStrokePi: { | ||
589 | }); | 728 | }); |
590 | 729 | ||
591 | 730 | ||