-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathAnimatedVisuals.LottieLogo1.cpp
More file actions
4309 lines (4006 loc) · 197 KB
/
Copy pathAnimatedVisuals.LottieLogo1.cpp
File metadata and controls
4309 lines (4006 loc) · 197 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// LottieGen version:
// 8.0.230813-rc.7+0443b1e789
//
// Command:
// LottieGen -Language Cppwinrt -WinUIVersion 3.0 -InputFile LottieLogo1.json
//
// Input file:
// LottieLogo1.json (190271 bytes created 0:40-04:00 Mar 13 2024)
//
// LottieGen source:
// http://aka.ms/Lottie
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
// ____________________________________
// | Object stats | Count |
// |__________________________|_______|
// | All CompositionObjects | 610 |
// |--------------------------+-------|
// | Expression animators | 52 |
// | KeyFrame animators | 121 |
// | Reference parameters | 52 |
// | Expression operations | 0 |
// |--------------------------+-------|
// | Animated brushes | - |
// | Animated gradient stops | - |
// | ExpressionAnimations | 50 |
// | PathKeyFrameAnimations | - |
// |--------------------------+-------|
// | ContainerVisuals | 1 |
// | ShapeVisuals | 1 |
// |--------------------------+-------|
// | ContainerShapes | 23 |
// | CompositionSpriteShapes | 45 |
// |--------------------------+-------|
// | Brushes | 3 |
// | Gradient stops | - |
// | CompositionVisualSurface | - |
// ------------------------------------
#include "pch.h"
#include "AnimatedVisuals.LottieLogo1.h"
#if __has_include ("AnimatedVisuals.LottieLogo1.g.cpp")
#include "AnimatedVisuals.LottieLogo1.g.cpp"
#endif
#include <winrt/Windows.Foundation.Metadata.h>
#include <winrt/Windows.Foundation.Collections.h>
#include <winrt/Microsoft.UI.Composition.h>
#include "d2d1.h"
#include <d2d1_1.h>
#include <d2d1helper.h>
#include <Windows.Graphics.Interop.h>
#ifdef BUILD_WINDOWS
namespace ABI
{
#include <Windows.Graphics.Effects.Interop.h>
}
#else
#include <Windows.Graphics.Effects.Interop.h>
#endif
#include <winrt/Windows.Graphics.Effects.h>
using namespace winrt::Microsoft::UI;
using namespace winrt::Microsoft::UI::Composition;
using namespace winrt::Microsoft::UI::Xaml::Controls;
using namespace winrt::Windows::Foundation;
using namespace winrt::Windows::Foundation::Numerics;
using namespace winrt::Windows::Graphics;
using Color = winrt::Windows::UI::Color;
using CompositionPropertySet = winrt::Microsoft::UI::Composition::CompositionPropertySet;
using TimeSpan = winrt::Windows::Foundation::TimeSpan;
namespace winrt::AnimatedVisuals::implementation
{
class CanvasGeometry : public winrt::implements<CanvasGeometry,
IGeometrySource2D,
::ABI::Windows::Graphics::IGeometrySource2DInterop>
{
winrt::com_ptr<ID2D1Geometry> _geometry{ nullptr };
public:
CanvasGeometry(winrt::com_ptr<ID2D1Geometry> geometry)
: _geometry{ geometry }
{ }
// IGeometrySource2D.
winrt::com_ptr<ID2D1Geometry> Geometry() { return _geometry; }
// IGeometrySource2DInterop.
IFACEMETHODIMP GetGeometry(ID2D1Geometry** value) noexcept(true) override
{
_geometry.copy_to(value);
return S_OK;
}
// IGeometrySource2DInterop.
IFACEMETHODIMP TryGetGeometryUsingFactory(ID2D1Factory*, ID2D1Geometry**) noexcept(true) override
{
return E_NOTIMPL;
}
};
class LottieLogo1_AnimatedVisual : public winrt::implements<LottieLogo1_AnimatedVisual,
winrt::Microsoft::UI::Xaml::Controls::IAnimatedVisual2,
winrt::Microsoft::UI::Xaml::Controls::IAnimatedVisual,
IClosable>
{
winrt::com_ptr<ID2D1Factory> _d2dFactory{ nullptr };
static constexpr int64_t c_durationTicks{ 59666666L };
Compositor const _c{ nullptr };
ExpressionAnimation const _reusableExpressionAnimation{ nullptr };
AnimationController _animationController_0{ nullptr };
AnimationController _animationController_1{ nullptr };
CompositionColorBrush _colorBrush_AlmostTeal_FF007A87{ nullptr };
CompositionColorBrush _colorBrush_White{ nullptr };
CompositionContainerShape _containerShape_00{ nullptr };
CompositionContainerShape _containerShape_01{ nullptr };
CompositionContainerShape _containerShape_02{ nullptr };
CompositionContainerShape _containerShape_03{ nullptr };
CompositionContainerShape _containerShape_04{ nullptr };
CompositionContainerShape _containerShape_05{ nullptr };
CompositionContainerShape _containerShape_06{ nullptr };
CompositionContainerShape _containerShape_07{ nullptr };
CompositionContainerShape _containerShape_08{ nullptr };
CompositionContainerShape _containerShape_09{ nullptr };
CompositionContainerShape _containerShape_10{ nullptr };
CompositionContainerShape _containerShape_11{ nullptr };
CompositionContainerShape _containerShape_12{ nullptr };
CompositionContainerShape _containerShape_13{ nullptr };
CompositionContainerShape _containerShape_14{ nullptr };
CompositionContainerShape _containerShape_15{ nullptr };
CompositionContainerShape _containerShape_16{ nullptr };
CompositionContainerShape _containerShape_17{ nullptr };
CompositionContainerShape _containerShape_18{ nullptr };
CompositionContainerShape _containerShape_19{ nullptr };
CompositionContainerShape _containerShape_20{ nullptr };
CompositionContainerShape _containerShape_21{ nullptr };
CompositionContainerShape _containerShape_22{ nullptr };
CompositionEllipseGeometry _ellipse_0_0{ nullptr };
CompositionEllipseGeometry _ellipse_0_1{ nullptr };
CompositionEllipseGeometry _ellipse_4p7{ nullptr };
CompositionPath _path_0{ nullptr };
CompositionPath _path_1{ nullptr };
CompositionPath _path_2{ nullptr };
CompositionPath _path_3{ nullptr };
CompositionPath _path_4{ nullptr };
CompositionPath _path_5{ nullptr };
CompositionPath _path_6{ nullptr };
CompositionPath _path_7{ nullptr };
CompositionPath _path_8{ nullptr };
CompositionPathGeometry _pathGeometry_00{ nullptr };
CompositionPathGeometry _pathGeometry_01{ nullptr };
CompositionPathGeometry _pathGeometry_02{ nullptr };
CompositionPathGeometry _pathGeometry_03{ nullptr };
CompositionPathGeometry _pathGeometry_04{ nullptr };
CompositionPathGeometry _pathGeometry_05{ nullptr };
CompositionPathGeometry _pathGeometry_06{ nullptr };
CompositionPathGeometry _pathGeometry_07{ nullptr };
CompositionPathGeometry _pathGeometry_08{ nullptr };
CompositionPathGeometry _pathGeometry_09{ nullptr };
CompositionPathGeometry _pathGeometry_10{ nullptr };
CompositionPathGeometry _pathGeometry_11{ nullptr };
CompositionPathGeometry _pathGeometry_12{ nullptr };
CompositionPathGeometry _pathGeometry_13{ nullptr };
CompositionPathGeometry _pathGeometry_14{ nullptr };
CompositionPathGeometry _pathGeometry_15{ nullptr };
CompositionPathGeometry _pathGeometry_16{ nullptr };
CompositionPathGeometry _pathGeometry_17{ nullptr };
CompositionPathGeometry _pathGeometry_18{ nullptr };
CompositionPathGeometry _pathGeometry_19{ nullptr };
CompositionPathGeometry _pathGeometry_20{ nullptr };
CompositionPathGeometry _pathGeometry_21{ nullptr };
CompositionPathGeometry _pathGeometry_22{ nullptr };
CompositionPathGeometry _pathGeometry_23{ nullptr };
CompositionPathGeometry _pathGeometry_24{ nullptr };
CompositionPathGeometry _pathGeometry_25{ nullptr };
CompositionPathGeometry _pathGeometry_26{ nullptr };
CompositionPathGeometry _pathGeometry_27{ nullptr };
CompositionPathGeometry _pathGeometry_28{ nullptr };
CompositionPathGeometry _pathGeometry_29{ nullptr };
CompositionPathGeometry _pathGeometry_30{ nullptr };
CompositionPathGeometry _pathGeometry_31{ nullptr };
CompositionPathGeometry _pathGeometry_32{ nullptr };
CompositionPathGeometry _pathGeometry_33{ nullptr };
CompositionPathGeometry _pathGeometry_34{ nullptr };
CompositionPathGeometry _pathGeometry_35{ nullptr };
CompositionPathGeometry _pathGeometry_36{ nullptr };
CompositionPathGeometry _pathGeometry_37{ nullptr };
CompositionPathGeometry _pathGeometry_38{ nullptr };
CompositionSpriteShape _spriteShape_11{ nullptr };
CompositionSpriteShape _spriteShape_12{ nullptr };
CompositionSpriteShape _spriteShape_13{ nullptr };
CompositionSpriteShape _spriteShape_14{ nullptr };
CompositionSpriteShape _spriteShape_15{ nullptr };
CompositionSpriteShape _spriteShape_19{ nullptr };
CompositionSpriteShape _spriteShape_22{ nullptr };
CompositionSpriteShape _spriteShape_23{ nullptr };
CompositionSpriteShape _spriteShape_36{ nullptr };
CompositionSpriteShape _spriteShape_37{ nullptr };
CompositionSpriteShape _spriteShape_38{ nullptr };
ContainerVisual _root{ nullptr };
CubicBezierEasingFunction _cubicBezierEasingFunction_0{ nullptr };
CubicBezierEasingFunction _cubicBezierEasingFunction_1{ nullptr };
CubicBezierEasingFunction _cubicBezierEasingFunction_2{ nullptr };
CubicBezierEasingFunction _cubicBezierEasingFunction_3{ nullptr };
CubicBezierEasingFunction _cubicBezierEasingFunction_4{ nullptr };
CubicBezierEasingFunction _cubicBezierEasingFunction_5{ nullptr };
CubicBezierEasingFunction _cubicBezierEasingFunction_6{ nullptr };
CubicBezierEasingFunction _cubicBezierEasingFunction_7{ nullptr };
CubicBezierEasingFunction _cubicBezierEasingFunction_8{ nullptr };
ScalarKeyFrameAnimation _tEndScalarAnimation_1_to_0_02{ nullptr };
ScalarKeyFrameAnimation _tEndScalarAnimation_1_to_0_03{ nullptr };
ScalarKeyFrameAnimation _tEndScalarAnimation_1_to_0_06{ nullptr };
ScalarKeyFrameAnimation _tEndScalarAnimation_1_to_0_11{ nullptr };
ScalarKeyFrameAnimation _tEndScalarAnimation_1_to_0_13{ nullptr };
ScalarKeyFrameAnimation _tStartScalarAnimation_0_to_0p249{ nullptr };
ScalarKeyFrameAnimation _tStartScalarAnimation_0p87_to_0_02{ nullptr };
StepEasingFunction _holdThenStepEasingFunction{ nullptr };
StepEasingFunction _stepThenHoldEasingFunction{ nullptr };
Vector2KeyFrameAnimation _offsetVector2Animation_02{ nullptr };
Vector2KeyFrameAnimation _offsetVector2Animation_03{ nullptr };
Vector2KeyFrameAnimation _offsetVector2Animation_04{ nullptr };
Vector2KeyFrameAnimation _offsetVector2Animation_05{ nullptr };
Vector2KeyFrameAnimation _offsetVector2Animation_06{ nullptr };
Vector2KeyFrameAnimation _radiusVector2Animation{ nullptr };
Vector2KeyFrameAnimation _shapeVisibilityAnimation_04{ nullptr };
void BindProperty(
CompositionObject target,
winrt::hstring animatedPropertyName,
winrt::hstring expression,
winrt::hstring referenceParameterName,
CompositionObject referencedObject)
{
_reusableExpressionAnimation.ClearAllParameters();
_reusableExpressionAnimation.Expression(expression);
_reusableExpressionAnimation.SetReferenceParameter(referenceParameterName, referencedObject);
target.StartAnimation(animatedPropertyName, _reusableExpressionAnimation);
}
ScalarKeyFrameAnimation CreateScalarKeyFrameAnimation(float initialProgress, float initialValue, CompositionEasingFunction initialEasingFunction)
{
const auto result = _c.CreateScalarKeyFrameAnimation();
result.Duration(TimeSpan{ c_durationTicks });
result.InsertKeyFrame(initialProgress, initialValue, initialEasingFunction);
return result;
}
Vector2KeyFrameAnimation CreateVector2KeyFrameAnimation(float initialProgress, float2 initialValue, CompositionEasingFunction initialEasingFunction)
{
const auto result = _c.CreateVector2KeyFrameAnimation();
result.Duration(TimeSpan{ c_durationTicks });
result.InsertKeyFrame(initialProgress, initialValue, initialEasingFunction);
return result;
}
CompositionSpriteShape CreateSpriteShape(CompositionGeometry geometry, float3x2 transformMatrix)
{
const auto result = _c.CreateSpriteShape(geometry);
result.TransformMatrix(transformMatrix);
return result;
}
CompositionSpriteShape CreateSpriteShape(CompositionGeometry geometry, float3x2 transformMatrix, CompositionBrush fillBrush)
{
const auto result = _c.CreateSpriteShape(geometry);
result.TransformMatrix(transformMatrix);
result.FillBrush(fillBrush);
return result;
}
AnimationController AnimationController_0()
{
if (_animationController_0 != nullptr) { return _animationController_0; }
const auto result = _animationController_0 = _c.CreateAnimationController();
result.Pause();
BindProperty(_animationController_0, L"Progress", L"_.Progress", L"_", _root);
return result;
}
// - Layer aggregator
// Layer: Dot1
AnimationController AnimationController_1()
{
if (_animationController_1 != nullptr) { return _animationController_1; }
const auto result = _animationController_1 = _c.CreateAnimationController();
result.Pause();
BindProperty(_animationController_1, L"Progress", L"_.Progress*0.9835165+0.01648352", L"_", _root);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_00()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ -13.6639996F, -0.144999996F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ 75.663002F, 0.289999992F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_01()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ 0.859000027F, -21.1429996F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ -4.35900021F, 70.3919983F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_02()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ -26.6700001F, -0.282999992F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ 99.1709976F, 0.0659999996F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_03()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ -13.6639996F, -0.144999996F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ 62.1629982F, 0.289999992F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_04()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ -30.7199993F, 63.7610016F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddBezier({ { -30.6889992F, 63.1669998F }, { -30.7889996F, 50.8470001F }, { -30.7409992F, 45.1920013F } });
sink->AddBezier({ { -30.6650009F, 36.2140007F }, { -37.3429985F, 27.0739994F }, { -37.3969994F, 27.0139999F } });
sink->AddBezier({ { -38.5579987F, 25.7140007F }, { -39.7519989F, 24.1469994F }, { -40.6980019F, 22.6609993F } });
sink->AddBezier({ { -46.637001F, 13.3339996F }, { -47.8400002F, 0.933000028F }, { -37.8730011F, -7.1170001F } });
sink->AddBezier({ { -13.1960001F, -27.0459995F }, { 8.96000004F, 11.559F }, { 49.5060005F, 11.559F } });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_05()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ 246.649994F, 213.813995F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ 340.955994F, 213.628006F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_06()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ 1.68099999F, -29.9920006F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ -1.68099999F, 29.9920006F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_07()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ 1.76800001F, -25.9659996F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ -1.76800001F, 25.9659996F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_08()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ -8.83699989F, -58.2290001F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddBezier({ { -8.83699989F, -58.2290001F }, { -10.1630001F, 29.4950008F }, { -35.8339996F, 33.6619987F } });
sink->AddBezier({ { -44.0579987F, 34.9970016F }, { -50.2319984F, 30.0499992F }, { -51.6879997F, 23.1480007F } });
sink->AddBezier({ { -53.144001F, 16.2450008F }, { -49.6549988F, 9.15600014F }, { -41.1739998F, 7.29300022F } });
sink->AddBezier({ { -17.3570004F, 2.05999994F }, { 4.23500013F, 57.1879997F }, { 51.7970009F, 44.1780014F } });
sink->AddBezier({ { 51.9570007F, 44.1339989F }, { 52.6870003F, 43.8740005F }, { 53.1879997F, 43.7410011F } });
sink->AddBezier({ { 53.6889992F, 43.6080017F }, { 68.9710007F, 41.3569984F }, { 140.393997F, 43.6720009F } });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_09()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ -67.125F, -112.0F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddBezier({ { -67.125F, -112.0F }, { -73.5579987F, -100.719002F }, { -75.4580002F, -89.9509964F } });
sink->AddBezier({ { -78.625F, -72.0F }, { -79.375F, -58.25F }, { -80.375F, -39.25F } });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_10()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ -67.25F, -105.5F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddBezier({ { -67.25F, -105.5F }, { -70.4329987F, -94.9690018F }, { -72.3330002F, -84.2009964F } });
sink->AddBezier({ { -75.5F, -66.25F }, { -75.5F, -56.75F }, { -76.5F, -37.75F } });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_11()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ 34.5F, -13.0500002F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddBezier({ { 7.5F, -14.5F }, { -4.0F, -37.0F }, { -35.0460014F, -35.5789986F } });
sink->AddBezier({ { -61.4720001F, -34.3689995F }, { -62.25F, -5.75F }, { -62.25F, -5.75F } });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_12()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ -3.0F, 35.9500008F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddBezier({ { -3.0F, 35.9500008F }, { -1.5F, 7.5F }, { -1.352F, -6.75600004F } });
sink->AddBezier({ { -9.90299988F, -15.0190001F }, { -21.5699997F, -20.5790005F }, { -32.0460014F, -20.5790005F } });
sink->AddBezier({ { -53.5F, -20.5790005F }, { -42.25F, 4.25F }, { -42.25F, 4.25F } });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_13()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ 16.2310009F, 39.0730019F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ -32.769001F, 57.3650017F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_14()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ 7.44999981F, 21.9500008F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ -32.75F, 55.75F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_15()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ -94.5F, 37.0730019F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ -48.769001F, 55.3650017F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_16()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ -87.5F, 20.9500008F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ -48.75F, 54.75F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_17()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ 166.731003F, -7.92700005F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ 136.731003F, 7.11499977F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_18()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ 156.449997F, -23.0499992F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ 132.0F, 2.75F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_19()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ 169.5F, 18.073F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ 137.481003F, 11.3649998F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_20()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ 119.5F, -45.0499992F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ 82.75F, -44.75F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_21()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ 119.25F, -20.0499992F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ 63.5F, -20.5F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_22()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ 128.0F, 3.6500001F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ 78.25F, 3.5F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_23()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ 149.623993F, 8.24400043F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ 136.647995F, 10.1560001F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_24()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ 144.429001F, -5.39699984F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ 132.274994F, 4.73099995F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_25()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ 145.677002F, 22.2199993F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ 134.921997F, 14.7489996F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_26()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ 147.699005F, 13.0249996F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ 133.195007F, 13.21F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_27()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ 142.182999F, -5.11199999F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ 130.029007F, 5.01599979F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
winrt::com_ptr<CanvasGeometry> Geometry_28()
{
winrt::com_ptr<ID2D1PathGeometry> path{ nullptr };
winrt::check_hresult(_d2dFactory->CreatePathGeometry(path.put()));
winrt::com_ptr<ID2D1GeometrySink> sink{ nullptr };
winrt::check_hresult(path->Open(sink.put()));
sink->BeginFigure({ 142.037994F, 29.2779999F }, D2D1_FIGURE_BEGIN_FILLED);
sink->AddLine({ 131.281998F, 21.8069992F });
sink->EndFigure(D2D1_FIGURE_END_OPEN);
winrt::check_hresult(sink->Close());
auto result = winrt::make_self<CanvasGeometry>(path);
return result;
}
// - Layer aggregator
// Offset:<187.5, 333.5>
CompositionColorBrush ColorBrush_AlmostDarkTurquoise_FF00D1C1()
{
return _c.CreateColorBrush({ 0xFF, 0x00, 0xD1, 0xC1 });
}
CompositionColorBrush ColorBrush_AlmostTeal_FF007A87()
{
return (_colorBrush_AlmostTeal_FF007A87 == nullptr)
? _colorBrush_AlmostTeal_FF007A87 = _c.CreateColorBrush({ 0xFF, 0x00, 0x7A, 0x87 })
: _colorBrush_AlmostTeal_FF007A87;
}
CompositionColorBrush ColorBrush_White()
{
return (_colorBrush_White == nullptr)
? _colorBrush_White = _c.CreateColorBrush({ 0xFF, 0xFF, 0xFF, 0xFF })
: _colorBrush_White;
}
// Layer aggregator
// Transforms for Bncr
CompositionContainerShape ContainerShape_00()
{
if (_containerShape_00 != nullptr) { return _containerShape_00; }
const auto result = _containerShape_00 = _c.CreateContainerShape();
result.Scale({ 0.0F, 0.0F });
// Offset:<154.457, 287.822>
result.TransformMatrix({ 1.0F, 0.0F, 0.0F, 1.0F, 154.457001F, 287.821991F });
// Transforms: Dot-Y
result.Shapes().Append(ContainerShape_01());
return result;
}
// - Layer aggregator
// Layer: Dot-Y
// Transforms for Dot-Y
CompositionContainerShape ContainerShape_01()
{
if (_containerShape_01 != nullptr) { return _containerShape_01; }
const auto result = _containerShape_01 = _c.CreateContainerShape();
// ShapeGroup: Ellipse 1 Offset:<196, 267>
result.Shapes().Append(SpriteShape_01());
return result;
}
// Layer aggregator
// Transforms for E3-Y
CompositionContainerShape ContainerShape_02()
{
if (_containerShape_02 != nullptr) { return _containerShape_02; }
const auto result = _containerShape_02 = _c.CreateContainerShape();
result.Scale({ 0.0F, 0.0F });
// Offset:<154.457, 287.822>
result.TransformMatrix({ 1.0F, 0.0F, 0.0F, 1.0F, 154.457001F, 287.821991F });
// ShapeGroup: Group 1 Offset:<344.674, 261.877>
result.Shapes().Append(SpriteShape_02());
return result;
}
// Layer aggregator
// Transforms for E3-Y
CompositionContainerShape ContainerShape_03()
{
if (_containerShape_03 != nullptr) { return _containerShape_03; }
const auto result = _containerShape_03 = _c.CreateContainerShape();
result.Scale({ 0.0F, 0.0F });
// Offset:<154.457, 287.822>
result.TransformMatrix({ 1.0F, 0.0F, 0.0F, 1.0F, 154.457001F, 287.821991F });
// Transforms: E3-B Offset:<0.06500244, 0>
result.Shapes().Append(SpriteShape_03());
return result;
}
// Layer aggregator
// Transforms for I-Y
CompositionContainerShape ContainerShape_04()
{
if (_containerShape_04 != nullptr) { return _containerShape_04; }
const auto result = _containerShape_04 = _c.CreateContainerShape();
result.Scale({ 0.0F, 0.0F });
// Offset:<154.457, 287.822>
result.TransformMatrix({ 1.0F, 0.0F, 0.0F, 1.0F, 154.457001F, 287.821991F });
// ShapeGroup: Group 6 Offset:<304.135, 282.409>
result.Shapes().Append(SpriteShape_04());
return result;
}
// Layer aggregator
// Transforms for I-Y
CompositionContainerShape ContainerShape_05()
{
if (_containerShape_05 != nullptr) { return _containerShape_05; }
const auto result = _containerShape_05 = _c.CreateContainerShape();
result.Scale({ 0.0F, 0.0F });
// Offset:<154.457, 287.822>
result.TransformMatrix({ 1.0F, 0.0F, 0.0F, 1.0F, 154.457001F, 287.821991F });
// Transforms: I-B
result.Shapes().Append(SpriteShape_05());
return result;
}
// Layer aggregator
// Transforms for E2-Y
CompositionContainerShape ContainerShape_06()
{
if (_containerShape_06 != nullptr) { return _containerShape_06; }
const auto result = _containerShape_06 = _c.CreateContainerShape();
result.Scale({ 0.0F, 0.0F });
// Offset:<154.457, 287.822>
result.TransformMatrix({ 1.0F, 0.0F, 0.0F, 1.0F, 154.457001F, 287.821991F });
// ShapeGroup: Group 3 Offset:<331.664, 238.14>
result.Shapes().Append(SpriteShape_06());
return result;
}
// Layer aggregator
// Transforms for E2-Y
CompositionContainerShape ContainerShape_07()
{
if (_containerShape_07 != nullptr) { return _containerShape_07; }
const auto result = _containerShape_07 = _c.CreateContainerShape();
result.Scale({ 0.0F, 0.0F });
// Offset:<154.457, 287.822>
result.TransformMatrix({ 1.0F, 0.0F, 0.0F, 1.0F, 154.457001F, 287.821991F });
// Transforms: E2-B
result.Shapes().Append(SpriteShape_07());
return result;
}
// Layer aggregator
// Transforms for E1-Y
CompositionContainerShape ContainerShape_08()
{
if (_containerShape_08 != nullptr) { return _containerShape_08; }
const auto result = _containerShape_08 = _c.CreateContainerShape();
result.Scale({ 0.0F, 0.0F });
// Offset:<154.457, 287.822>
result.TransformMatrix({ 1.0F, 0.0F, 0.0F, 1.0F, 154.457001F, 287.821991F });
// ShapeGroup: Group 2 Offset:<344.672, 214.842>
result.Shapes().Append(SpriteShape_08());
return result;
}
// Layer aggregator
// Transforms for E1-Y
CompositionContainerShape ContainerShape_09()
{
if (_containerShape_09 != nullptr) { return _containerShape_09; }
const auto result = _containerShape_09 = _c.CreateContainerShape();
result.Scale({ 0.0F, 0.0F });
// Offset:<154.457, 287.822>
result.TransformMatrix({ 1.0F, 0.0F, 0.0F, 1.0F, 154.457001F, 287.821991F });
// Transforms: E1-B
result.Shapes().Append(SpriteShape_09());
return result;
}
// Layer aggregator
// Transforms for T1a-Y
CompositionContainerShape ContainerShape_10()
{
if (_containerShape_10 != nullptr) { return _containerShape_10; }
const auto result = _containerShape_10 = _c.CreateContainerShape();
result.Scale({ 0.0F, 0.0F });
// Offset:<154.457, 287.822>
result.TransformMatrix({ 1.0F, 0.0F, 0.0F, 1.0F, 154.457001F, 287.821991F });
// ShapeGroup: Group 9 Offset:<227.677, 234.375>
result.Shapes().Append(SpriteShape_10());
return result;
}
// Layer aggregator
// Transforms for O-Y
CompositionContainerShape ContainerShape_11()
{
if (_containerShape_11 != nullptr) { return _containerShape_11; }
const auto result = _containerShape_11 = _c.CreateContainerShape();
result.Scale({ 0.0F, 0.0F });
// Offset:<154.457, 287.822>
result.TransformMatrix({ 1.0F, 0.0F, 0.0F, 1.0F, 154.457001F, 287.821991F });
const auto shapes = result.Shapes();
// ShapeGroup: Ellipse 1 Offset:<196, 267>
shapes.Append(SpriteShape_16());
// ShapeGroup: Ellipse 1 Offset:<196, 267>
shapes.Append(SpriteShape_17());
return result;
}
// Layer aggregator
// Transforms for T1a-Y 2
CompositionContainerShape ContainerShape_12()
{
if (_containerShape_12 != nullptr) { return _containerShape_12; }
const auto result = _containerShape_12 = _c.CreateContainerShape();
result.Scale({ 0.0F, 0.0F });
// Offset:<154.457, 287.822>
result.TransformMatrix({ 1.0F, 0.0F, 0.0F, 1.0F, 154.457001F, 287.821991F });
// ShapeGroup: Group 9 Offset:<227.677, 234.375>
result.Shapes().Append(SpriteShape_18());
return result;
}
// Layer aggregator
// Transforms for T1a-Y
CompositionContainerShape ContainerShape_13()
{
if (_containerShape_13 != nullptr) { return _containerShape_13; }
const auto result = _containerShape_13 = _c.CreateContainerShape();
result.Scale({ 0.0F, 0.0F });
// Offset:<154.457, 287.822>
result.TransformMatrix({ 1.0F, 0.0F, 0.0F, 1.0F, 154.457001F, 287.821991F });
// Transforms: T1a-B
result.Shapes().Append(SpriteShape_20());
return result;
}
// Layer aggregator
// Transforms for N
CompositionContainerShape ContainerShape_14()
{
if (_containerShape_14 != nullptr) { return _containerShape_14; }
const auto result = _containerShape_14 = _c.CreateContainerShape();
result.Scale({ 0.0F, 0.0F });
// Offset:<154.457, 287.822>
result.TransformMatrix({ 1.0F, 0.0F, 0.0F, 1.0F, 154.457001F, 287.821991F });
// Transforms: Dot-Y
result.Shapes().Append(ContainerShape_15());
return result;
}
// - Layer aggregator
// Layer: Dot-Y
// Transforms for Dot-Y
CompositionContainerShape ContainerShape_15()
{
if (_containerShape_15 != nullptr) { return _containerShape_15; }
const auto result = _containerShape_15 = _c.CreateContainerShape();
// ShapeGroup: Ellipse 1 Offset:<196, 267>
result.Shapes().Append(SpriteShape_21());
return result;
}
// Layer aggregator
// Transforms for Dot1
CompositionContainerShape ContainerShape_16()
{
if (_containerShape_16 != nullptr) { return _containerShape_16; }
const auto result = _containerShape_16 = _c.CreateContainerShape();
// Offset:<154.457, 287.822>
result.TransformMatrix({ 1.0F, 0.0F, 0.0F, 1.0F, 154.457001F, 287.821991F });
// ShapeGroup: Ellipse 1 Offset:<196, 267>
result.Shapes().Append(SpriteShape_24());
return result;
}
// Layer aggregator
// Layer: S1-Y
CompositionContainerShape ContainerShape_17()
{
if (_containerShape_17 != nullptr) { return _containerShape_17; }
const auto result = _containerShape_17 = _c.CreateContainerShape();
result.Scale({ 0.0F, 0.0F });
const auto shapes = result.Shapes();
// Offset:<154.457, 287.822>
shapes.Append(SpriteShape_25());
// Offset:<154.457, 287.822>
shapes.Append(SpriteShape_26());
return result;
}
// Layer aggregator
// Layer: S7
CompositionContainerShape ContainerShape_18()
{
if (_containerShape_18 != nullptr) { return _containerShape_18; }
const auto result = _containerShape_18 = _c.CreateContainerShape();
result.Scale({ 0.0F, 0.0F });
const auto shapes = result.Shapes();
// Offset:<154.457, 287.822>
shapes.Append(SpriteShape_27());
// Offset:<154.457, 287.822>
shapes.Append(SpriteShape_28());
return result;