This repository has been archived on 2024-12-25. You can view files and clone it, but cannot push or open issues or pull requests.
2023-06-20 21:52:24 +03:00

41 lines
1.2 KiB
ObjectPascal
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

///Константы задающие фракталы
unit PaporotnikData;
uses Paporotnik;
var
///Папоротник с изогнутым листом
PaprotnikData: PaporotnikFractalInitalData := (
data: (( 0.0000, 0.0000, 0.0000, 0.1600, 0, 0.0000),
( 0.8500, 0.0400, -0.0400, 0.8500, 0, 1.6000),
( 0.1667, -0.2887, 0.2887, 0.1667, 0, 1.6000),
(-0.1667, 0.2887, 0.2887, 0.1667, 0, 0.4400));
P0: 3;
P1: 83;
P2: 7;
P3: 7);
///Папоротник с прямым листом
SimplePaprotnikData: PaporotnikFractalInitalData := (
data: (( 0.00, 0.00, 0.00, 0.16, 0, 0.00),
( 0.85, 0.00, 0.00, 0.85, 0, 1.60),
( 0.20, -0.26, 0.23, 0.22, 0, 1.60),
(-0.20, 0.26, 0.23, 0.22, 0, 1.60));
P0: 3;
P1: 83;
P2: 7;
P3: 7);
///Елка
ElkaData: PaporotnikFractalInitalData := (
data: (( 0.1000, 0.0000, 0.0000, 0.1600, 0, 0.0000),
( 0.8500, 0.0000, 0.0000, 0.8500, 0, 1.6000),
(-0.1667, -0.2887, 0.2887, -0.1667, 0, 1.6000),
(-0.1667, 0.2887, -0.2887, -0.1667, 0, 1.6000));
P0: 1;
P1: 85;
P2: 7;
P3: 7);
end.