Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BPy_StrokeAttribute.cpp « python « intern « freestyle « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ed2af40545a69a62207a277c19fd12677f89a959 (plain)
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
/* SPDX-License-Identifier: GPL-2.0-or-later */

/** \file
 * \ingroup freestyle
 */

#include "BPy_StrokeAttribute.h"

#include "BPy_Convert.h"

#ifdef __cplusplus
extern "C" {
#endif

using namespace Freestyle;

///////////////////////////////////////////////////////////////////////////////////////////

//-------------------MODULE INITIALIZATION--------------------------------
int StrokeAttribute_Init(PyObject *module)
{
  if (module == nullptr) {
    return -1;
  }

  if (PyType_Ready(&StrokeAttribute_Type) < 0) {
    return -1;
  }
  Py_INCREF(&StrokeAttribute_Type);
  PyModule_AddObject(module, "StrokeAttribute", (PyObject *)&StrokeAttribute_Type);

  StrokeAttribute_mathutils_register_callback();
  return 0;
}

//------------------------INSTANCE METHODS ----------------------------------

PyDoc_STRVAR(StrokeAttribute_doc,
             "Class to define a set of attributes associated with a :class:`StrokeVertex`.\n"
             "The attribute set stores the color, alpha and thickness values for a Stroke\n"
             "Vertex.\n"
             "\n"
             ".. method:: __init__()\n"
             "            __init__(brother)\n"
             "            __init__(red, green, blue, alpha, thickness_right, thickness_left)\n"
             "            __init__(attribute1, attribute2, t)\n"
             "\n"
             "   Creates a :class:`StrokeAttribute` object using either a default constructor,\n"
             "   copy constructor, overloaded constructor, or and interpolation constructor\n"
             "   to interpolate between two :class:`StrokeAttribute` objects.\n"
             "\n"
             "   :arg brother: A StrokeAttribute object to be used as a copy constructor.\n"
             "   :type brother: :class:`StrokeAttribute`\n"
             "   :arg red: Red component of a stroke color.\n"
             "   :type red: float\n"
             "   :arg green: Green component of a stroke color.\n"
             "   :type green: float\n"
             "   :arg blue: Blue component of a stroke color.\n"
             "   :type blue: float\n"
             "   :arg alpha: Alpha component of a stroke color.\n"
             "   :type alpha: float\n"
             "   :arg thickness_right: Stroke thickness on the right.\n"
             "   :type thickness_right: float\n"
             "   :arg thickness_left: Stroke thickness on the left.\n"
             "   :type thickness_left: float\n"
             "   :arg attribute1: The first StrokeAttribute object.\n"
             "   :type attribute1: :class:`StrokeAttribute`\n"
             "   :arg attribute2: The second StrokeAttribute object.\n"
             "   :type attribute2: :class:`StrokeAttribute`\n"
             "   :arg t: The interpolation parameter (0 <= t <= 1).\n"
             "   :type t: float\n");

static int StrokeAttribute_init(BPy_StrokeAttribute *self, PyObject *args, PyObject *kwds)
{
  static const char *kwlist_1[] = {"brother", nullptr};
  static const char *kwlist_2[] = {"attribute1", "attribute2", "t", nullptr};
  static const char *kwlist_3[] = {
      "red", "green", "blue", "alpha", "thickness_right", "thickness_left", nullptr};
  PyObject *obj1 = nullptr, *obj2 = nullptr;
  float red, green, blue, alpha, thickness_right, thickness_left, t;

  if (PyArg_ParseTupleAndKeywords(
          args, kwds, "|O!", (char **)kwlist_1, &StrokeAttribute_Type, &obj1)) {
    if (!obj1) {
      self->sa = new StrokeAttribute();
    }
    else {
      self->sa = new StrokeAttribute(*(((BPy_StrokeAttribute *)obj1)->sa));
    }
  }
  else if ((void)PyErr_Clear(),
           PyArg_ParseTupleAndKeywords(args,
                                       kwds,
                                       "O!O!f",
                                       (char **)kwlist_2,
                                       &StrokeAttribute_Type,
                                       &obj1,
                                       &StrokeAttribute_Type,
                                       &obj2,
                                       &t)) {
    self->sa = new StrokeAttribute(
        *(((BPy_StrokeAttribute *)obj1)->sa), *(((BPy_StrokeAttribute *)obj2)->sa), t);
  }
  else if ((void)PyErr_Clear(),
           PyArg_ParseTupleAndKeywords(args,
                                       kwds,
                                       "ffffff",
                                       (char **)kwlist_3,
                                       &red,
                                       &green,
                                       &blue,
                                       &alpha,
                                       &thickness_right,
                                       &thickness_left)) {
    self->sa = new StrokeAttribute(red, green, blue, alpha, thickness_right, thickness_left);
  }
  else {
    PyErr_SetString(PyExc_TypeError, "invalid argument(s)");
    return -1;
  }
  self->borrowed = false;
  return 0;
}

static void StrokeAttribute_dealloc(BPy_StrokeAttribute *self)
{
  if (self->sa && !self->borrowed) {
    delete self->sa;
  }
  Py_TYPE(self)->tp_free((PyObject *)self);
}

static PyObject *StrokeAttribute_repr(BPy_StrokeAttribute *self)
{
  stringstream repr("StrokeAttribute:");
  repr << " r: " << self->sa->getColorR() << " g: " << self->sa->getColorG()
       << " b: " << self->sa->getColorB() << " a: " << self->sa->getAlpha()
       << " - R: " << self->sa->getThicknessR() << " L: " << self->sa->getThicknessL();

  return PyUnicode_FromString(repr.str().c_str());
}

PyDoc_STRVAR(StrokeAttribute_get_attribute_real_doc,
             ".. method:: get_attribute_real(name)\n"
             "\n"
             "   Returns an attribute of float type.\n"
             "\n"
             "   :arg name: The name of the attribute.\n"
             "   :type name: str\n"
             "   :return: The attribute value.\n"
             "   :rtype: float\n");

static PyObject *StrokeAttribute_get_attribute_real(BPy_StrokeAttribute *self,
                                                    PyObject *args,
                                                    PyObject *kwds)
{
  static const char *kwlist[] = {"name", nullptr};
  char *attr;

  if (!PyArg_ParseTupleAndKeywords(args, kwds, "s", (char **)kwlist, &attr)) {
    return nullptr;
  }
  double a = self->sa->getAttributeReal(attr);
  return PyFloat_FromDouble(a);
}

PyDoc_STRVAR(StrokeAttribute_get_attribute_vec2_doc,
             ".. method:: get_attribute_vec2(name)\n"
             "\n"
             "   Returns an attribute of two-dimensional vector type.\n"
             "\n"
             "   :arg name: The name of the attribute.\n"
             "   :type name: str\n"
             "   :return: The attribute value.\n"
             "   :rtype: :class:`mathutils.Vector`\n");

static PyObject *StrokeAttribute_get_attribute_vec2(BPy_StrokeAttribute *self,
                                                    PyObject *args,
                                                    PyObject *kwds)
{
  static const char *kwlist[] = {"name", nullptr};
  char *attr;

  if (!PyArg_ParseTupleAndKeywords(args, kwds, "s", (char **)kwlist, &attr)) {
    return nullptr;
  }
  Vec2f a = self->sa->getAttributeVec2f(attr);
  return Vector_from_Vec2f(a);
}

PyDoc_STRVAR(StrokeAttribute_get_attribute_vec3_doc,
             ".. method:: get_attribute_vec3(name)\n"
             "\n"
             "   Returns an attribute of three-dimensional vector type.\n"
             "\n"
             "   :arg name: The name of the attribute.\n"
             "   :type name: str\n"
             "   :return: The attribute value.\n"
             "   :rtype: :class:`mathutils.Vector`\n");

static PyObject *StrokeAttribute_get_attribute_vec3(BPy_StrokeAttribute *self,
                                                    PyObject *args,
                                                    PyObject *kwds)
{
  static const char *kwlist[] = {"name", nullptr};
  char *attr;

  if (!PyArg_ParseTupleAndKeywords(args, kwds, "s", (char **)kwlist, &attr)) {
    return nullptr;
  }
  Vec3f a = self->sa->getAttributeVec3f(attr);
  return Vector_from_Vec3f(a);
}

PyDoc_STRVAR(StrokeAttribute_has_attribute_real_doc,
             ".. method:: has_attribute_real(name)\n"
             "\n"
             "   Checks whether the attribute name of float type is available.\n"
             "\n"
             "   :arg name: The name of the attribute.\n"
             "   :type name: str\n"
             "   :return: True if the attribute is available.\n"
             "   :rtype: bool\n");

static PyObject *StrokeAttribute_has_attribute_real(BPy_StrokeAttribute *self,
                                                    PyObject *args,
                                                    PyObject *kwds)
{
  static const char *kwlist[] = {"name", nullptr};
  char *attr;

  if (!PyArg_ParseTupleAndKeywords(args, kwds, "s", (char **)kwlist, &attr)) {
    return nullptr;
  }
  return PyBool_from_bool(self->sa->isAttributeAvailableReal(attr));
}

PyDoc_STRVAR(StrokeAttribute_has_attribute_vec2_doc,
             ".. method:: has_attribute_vec2(name)\n"
             "\n"
             "   Checks whether the attribute name of two-dimensional vector type\n"
             "   is available.\n"
             "\n"
             "   :arg name: The name of the attribute.\n"
             "   :type name: str\n"
             "   :return: True if the attribute is available.\n"
             "   :rtype: bool\n");

static PyObject *StrokeAttribute_has_attribute_vec2(BPy_StrokeAttribute *self,
                                                    PyObject *args,
                                                    PyObject *kwds)
{
  static const char *kwlist[] = {"name", nullptr};
  char *attr;

  if (!PyArg_ParseTupleAndKeywords(args, kwds, "s", (char **)kwlist, &attr)) {
    return nullptr;
  }
  return PyBool_from_bool(self->sa->isAttributeAvailableVec2f(attr));
}

PyDoc_STRVAR(StrokeAttribute_has_attribute_vec3_doc,
             ".. method:: has_attribute_vec3(name)\n"
             "\n"
             "   Checks whether the attribute name of three-dimensional vector\n"
             "   type is available.\n"
             "\n"
             "   :arg name: The name of the attribute.\n"
             "   :type name: str\n"
             "   :return: True if the attribute is available.\n"
             "   :rtype: bool\n");

static PyObject *StrokeAttribute_has_attribute_vec3(BPy_StrokeAttribute *self,
                                                    PyObject *args,
                                                    PyObject *kwds)
{
  static const char *kwlist[] = {"name", nullptr};
  char *attr;

  if (!PyArg_ParseTupleAndKeywords(args, kwds, "s", (char **)kwlist, &attr)) {
    return nullptr;
  }
  return PyBool_from_bool(self->sa->isAttributeAvailableVec3f(attr));
}

PyDoc_STRVAR(StrokeAttribute_set_attribute_real_doc,
             ".. method:: set_attribute_real(name, value)\n"
             "\n"
             "   Adds a user-defined attribute of float type.  If there is no\n"
             "   attribute of the given name, it is added.  Otherwise, the new value\n"
             "   replaces the old one.\n"
             "\n"
             "   :arg name: The name of the attribute.\n"
             "   :type name: str\n"
             "   :arg value: The attribute value.\n"
             "   :type value: float\n");

static PyObject *StrokeAttribute_set_attribute_real(BPy_StrokeAttribute *self,
                                                    PyObject *args,
                                                    PyObject *kwds)
{
  static const char *kwlist[] = {"name", "value", nullptr};
  char *s = nullptr;
  double d = 0;

  if (!PyArg_ParseTupleAndKeywords(args, kwds, "sd", (char **)kwlist, &s, &d)) {
    return nullptr;
  }
  self->sa->setAttributeReal(s, d);
  Py_RETURN_NONE;
}

PyDoc_STRVAR(StrokeAttribute_set_attribute_vec2_doc,
             ".. method:: set_attribute_vec2(name, value)\n"
             "\n"
             "   Adds a user-defined attribute of two-dimensional vector type.  If\n"
             "   there is no attribute of the given name, it is added.  Otherwise,\n"
             "   the new value replaces the old one.\n"
             "\n"
             "   :arg name: The name of the attribute.\n"
             "   :type name: str\n"
             "   :arg value: The attribute value.\n"
             "   :type value: :class:`mathutils.Vector`, list or tuple of 2 real numbers\n");

static PyObject *StrokeAttribute_set_attribute_vec2(BPy_StrokeAttribute *self,
                                                    PyObject *args,
                                                    PyObject *kwds)
{
  static const char *kwlist[] = {"name", "value", nullptr};
  char *s;
  PyObject *obj = nullptr;
  Vec2f vec;

  if (!PyArg_ParseTupleAndKeywords(args, kwds, "sO", (char **)kwlist, &s, &obj)) {
    return nullptr;
  }
  if (!Vec2f_ptr_from_PyObject(obj, vec)) {
    PyErr_SetString(PyExc_TypeError,
                    "argument 2 must be a 2D vector (either a list of 2 elements or Vector)");
    return nullptr;
  }
  self->sa->setAttributeVec2f(s, vec);
  Py_RETURN_NONE;
}

PyDoc_STRVAR(StrokeAttribute_set_attribute_vec3_doc,
             ".. method:: set_attribute_vec3(name, value)\n"
             "\n"
             "   Adds a user-defined attribute of three-dimensional vector type.\n"
             "   If there is no attribute of the given name, it is added.\n"
             "   Otherwise, the new value replaces the old one.\n"
             "\n"
             "   :arg name: The name of the attribute.\n"
             "   :type name: str\n"
             "   :arg value: The attribute value.\n"
             "   :type value: :class:`mathutils.Vector`, list or tuple of 3 real numbers\n");

static PyObject *StrokeAttribute_set_attribute_vec3(BPy_StrokeAttribute *self,
                                                    PyObject *args,
                                                    PyObject *kwds)
{
  static const char *kwlist[] = {"name", "value", nullptr};
  char *s;
  PyObject *obj = nullptr;
  Vec3f vec;

  if (!PyArg_ParseTupleAndKeywords(args, kwds, "sO", (char **)kwlist, &s, &obj)) {
    return nullptr;
  }
  if (!Vec3f_ptr_from_PyObject(obj, vec)) {
    PyErr_SetString(PyExc_TypeError,
                    "argument 2 must be a 3D vector (either a list of 3 elements or Vector)");
    return nullptr;
  }
  self->sa->setAttributeVec3f(s, vec);
  Py_RETURN_NONE;
}

static PyMethodDef BPy_StrokeAttribute_methods[] = {
    {"get_attribute_real",
     (PyCFunction)StrokeAttribute_get_attribute_real,
     METH_VARARGS | METH_KEYWORDS,
     StrokeAttribute_get_attribute_real_doc},
    {"get_attribute_vec2",
     (PyCFunction)StrokeAttribute_get_attribute_vec2,
     METH_VARARGS | METH_KEYWORDS,
     StrokeAttribute_get_attribute_vec2_doc},
    {"get_attribute_vec3",
     (PyCFunction)StrokeAttribute_get_attribute_vec3,
     METH_VARARGS | METH_KEYWORDS,
     StrokeAttribute_get_attribute_vec3_doc},
    {"has_attribute_real",
     (PyCFunction)StrokeAttribute_has_attribute_real,
     METH_VARARGS | METH_KEYWORDS,
     StrokeAttribute_has_attribute_real_doc},
    {"has_attribute_vec2",
     (PyCFunction)StrokeAttribute_has_attribute_vec2,
     METH_VARARGS | METH_KEYWORDS,
     StrokeAttribute_has_attribute_vec2_doc},
    {"has_attribute_vec3",
     (PyCFunction)StrokeAttribute_has_attribute_vec3,
     METH_VARARGS | METH_KEYWORDS,
     StrokeAttribute_has_attribute_vec3_doc},
    {"set_attribute_real",
     (PyCFunction)StrokeAttribute_set_attribute_real,
     METH_VARARGS | METH_KEYWORDS,
     StrokeAttribute_set_attribute_real_doc},
    {"set_attribute_vec2",
     (PyCFunction)StrokeAttribute_set_attribute_vec2,
     METH_VARARGS | METH_KEYWORDS,
     StrokeAttribute_set_attribute_vec2_doc},
    {"set_attribute_vec3",
     (PyCFunction)StrokeAttribute_set_attribute_vec3,
     METH_VARARGS | METH_KEYWORDS,
     StrokeAttribute_set_attribute_vec3_doc},
    {nullptr, nullptr, 0, nullptr},
};

/*----------------------mathutils callbacks ----------------------------*/

/* subtype */
#define MATHUTILS_SUBTYPE_COLOR 1
#define MATHUTILS_SUBTYPE_THICKNESS 2

static int StrokeAttribute_mathutils_check(BaseMathObject *bmo)
{
  if (!BPy_StrokeAttribute_Check(bmo->cb_user)) {
    return -1;
  }
  return 0;
}

static int StrokeAttribute_mathutils_get(BaseMathObject *bmo, int subtype)
{
  BPy_StrokeAttribute *self = (BPy_StrokeAttribute *)bmo->cb_user;
  switch (subtype) {
    case MATHUTILS_SUBTYPE_COLOR:
      bmo->data[0] = self->sa->getColorR();
      bmo->data[1] = self->sa->getColorG();
      bmo->data[2] = self->sa->getColorB();
      break;
    case MATHUTILS_SUBTYPE_THICKNESS:
      bmo->data[0] = self->sa->getThicknessR();
      bmo->data[1] = self->sa->getThicknessL();
      break;
    default:
      return -1;
  }
  return 0;
}

static int StrokeAttribute_mathutils_set(BaseMathObject *bmo, int subtype)
{
  BPy_StrokeAttribute *self = (BPy_StrokeAttribute *)bmo->cb_user;
  switch (subtype) {
    case MATHUTILS_SUBTYPE_COLOR:
      self->sa->setColor(bmo->data[0], bmo->data[1], bmo->data[2]);
      break;
    case MATHUTILS_SUBTYPE_THICKNESS:
      self->sa->setThickness(bmo->data[0], bmo->data[1]);
      break;
    default:
      return -1;
  }
  return 0;
}

static int StrokeAttribute_mathutils_get_index(BaseMathObject *bmo, int subtype, int index)
{
  BPy_StrokeAttribute *self = (BPy_StrokeAttribute *)bmo->cb_user;
  switch (subtype) {
    case MATHUTILS_SUBTYPE_COLOR:
      switch (index) {
        case 0:
          bmo->data[0] = self->sa->getColorR();
          break;
        case 1:
          bmo->data[1] = self->sa->getColorG();
          break;
        case 2:
          bmo->data[2] = self->sa->getColorB();
          break;
        default:
          return -1;
      }
      break;
    case MATHUTILS_SUBTYPE_THICKNESS:
      switch (index) {
        case 0:
          bmo->data[0] = self->sa->getThicknessR();
          break;
        case 1:
          bmo->data[1] = self->sa->getThicknessL();
          break;
        default:
          return -1;
      }
      break;
    default:
      return -1;
  }
  return 0;
}

static int StrokeAttribute_mathutils_set_index(BaseMathObject *bmo, int subtype, int index)
{
  BPy_StrokeAttribute *self = (BPy_StrokeAttribute *)bmo->cb_user;
  switch (subtype) {
    case MATHUTILS_SUBTYPE_COLOR: {
      float r = (index == 0) ? bmo->data[0] : self->sa->getColorR();
      float g = (index == 1) ? bmo->data[1] : self->sa->getColorG();
      float b = (index == 2) ? bmo->data[2] : self->sa->getColorB();
      self->sa->setColor(r, g, b);
    } break;
    case MATHUTILS_SUBTYPE_THICKNESS: {
      float tr = (index == 0) ? bmo->data[0] : self->sa->getThicknessR();
      float tl = (index == 1) ? bmo->data[1] : self->sa->getThicknessL();
      self->sa->setThickness(tr, tl);
    } break;
    default:
      return -1;
  }
  return 0;
}

static Mathutils_Callback StrokeAttribute_mathutils_cb = {
    StrokeAttribute_mathutils_check,
    StrokeAttribute_mathutils_get,
    StrokeAttribute_mathutils_set,
    StrokeAttribute_mathutils_get_index,
    StrokeAttribute_mathutils_set_index,
};

static uchar StrokeAttribute_mathutils_cb_index = -1;

void StrokeAttribute_mathutils_register_callback()
{
  StrokeAttribute_mathutils_cb_index = Mathutils_RegisterCallback(&StrokeAttribute_mathutils_cb);
}

/*----------------------StrokeAttribute get/setters ----------------------------*/

PyDoc_STRVAR(StrokeAttribute_alpha_doc,
             "Alpha component of the stroke color.\n"
             "\n"
             ":type: float");

static PyObject *StrokeAttribute_alpha_get(BPy_StrokeAttribute *self, void * /*closure*/)
{
  return PyFloat_FromDouble(self->sa->getAlpha());
}

static int StrokeAttribute_alpha_set(BPy_StrokeAttribute *self,
                                     PyObject *value,
                                     void * /*closure*/)
{
  float scalar;
  if ((scalar = PyFloat_AsDouble(value)) == -1.0f && PyErr_Occurred()) {
    /* parsed item not a number */
    PyErr_SetString(PyExc_TypeError, "value must be a number");
    return -1;
  }
  self->sa->setAlpha(scalar);
  return 0;
}

PyDoc_STRVAR(StrokeAttribute_color_doc,
             "RGB components of the stroke color.\n"
             "\n"
             ":type: :class:`mathutils.Color`");

static PyObject *StrokeAttribute_color_get(BPy_StrokeAttribute *self, void * /*closure*/)
{
  return Color_CreatePyObject_cb(
      (PyObject *)self, StrokeAttribute_mathutils_cb_index, MATHUTILS_SUBTYPE_COLOR);
}

static int StrokeAttribute_color_set(BPy_StrokeAttribute *self,
                                     PyObject *value,
                                     void * /*closure*/)
{
  float v[3];
  if (mathutils_array_parse(v, 3, 3, value, "value must be a 3-dimensional vector") == -1) {
    return -1;
  }
  self->sa->setColor(v[0], v[1], v[2]);
  return 0;
}

PyDoc_STRVAR(StrokeAttribute_thickness_doc,
             "Right and left components of the stroke thickness.\n"
             "The right (left) component is the thickness on the right (left) of the vertex\n"
             "when following the stroke.\n"
             "\n"
             ":type: :class:`mathutils.Vector`");

static PyObject *StrokeAttribute_thickness_get(BPy_StrokeAttribute *self, void * /*closure*/)
{
  return Vector_CreatePyObject_cb(
      (PyObject *)self, 2, StrokeAttribute_mathutils_cb_index, MATHUTILS_SUBTYPE_THICKNESS);
}

static int StrokeAttribute_thickness_set(BPy_StrokeAttribute *self,
                                         PyObject *value,
                                         void * /*closure*/)
{
  float v[2];
  if (mathutils_array_parse(v, 2, 2, value, "value must be a 2-dimensional vector") == -1) {
    return -1;
  }
  self->sa->setThickness(v[0], v[1]);
  return 0;
}

PyDoc_STRVAR(StrokeAttribute_visible_doc,
             "The visibility flag.  True if the StrokeVertex is visible.\n"
             "\n"
             ":type: bool");

static PyObject *StrokeAttribute_visible_get(BPy_StrokeAttribute *self, void * /*closure*/)
{
  return PyBool_from_bool(self->sa->isVisible());
}

static int StrokeAttribute_visible_set(BPy_StrokeAttribute *self,
                                       PyObject *value,
                                       void * /*closure*/)
{
  if (!PyBool_Check(value)) {
    PyErr_SetString(PyExc_TypeError, "value must be boolean");
    return -1;
  }
  self->sa->setVisible(bool_from_PyBool(value));
  return 0;
}

static PyGetSetDef BPy_StrokeAttribute_getseters[] = {
    {"alpha",
     (getter)StrokeAttribute_alpha_get,
     (setter)StrokeAttribute_alpha_set,
     StrokeAttribute_alpha_doc,
     nullptr},
    {"color",
     (getter)StrokeAttribute_color_get,
     (setter)StrokeAttribute_color_set,
     StrokeAttribute_color_doc,
     nullptr},
    {"thickness",
     (getter)StrokeAttribute_thickness_get,
     (setter)StrokeAttribute_thickness_set,
     StrokeAttribute_thickness_doc,
     nullptr},
    {"visible",
     (getter)StrokeAttribute_visible_get,
     (setter)StrokeAttribute_visible_set,
     StrokeAttribute_visible_doc,
     nullptr},
    {nullptr, nullptr, nullptr, nullptr, nullptr} /* Sentinel */
};

/*-----------------------BPy_StrokeAttribute type definition ------------------------------*/

PyTypeObject StrokeAttribute_Type = {
    PyVarObject_HEAD_INIT(nullptr, 0)
    /*tp_name*/ "StrokeAttribute",
    /*tp_basicsize*/ sizeof(BPy_StrokeAttribute),
    /*tp_itemsize*/ 0,
    /*tp_dealloc*/ (destructor)StrokeAttribute_dealloc,
    /*tp_vectorcall_offset*/ 0,
    /*tp_getattr*/ nullptr,
    /*tp_setattr*/ nullptr,
    /*tp_as_async*/ nullptr,
    /*tp_repr*/ (reprfunc)StrokeAttribute_repr,
    /*tp_as_number*/ nullptr,
    /*tp_as_sequence*/ nullptr,
    /*tp_as_mapping*/ nullptr,
    /*tp_hash*/ nullptr,
    /*tp_call*/ nullptr,
    /*tp_str*/ nullptr,
    /*tp_getattro*/ nullptr,
    /*tp_setattro*/ nullptr,
    /*tp_as_buffer*/ nullptr,
    /*tp_flags*/ Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
    /*tp_doc*/ StrokeAttribute_doc,
    /*tp_traverse*/ nullptr,
    /*tp_clear*/ nullptr,
    /*tp_richcompare*/ nullptr,
    /*tp_weaklistoffset*/ 0,
    /*tp_iter*/ nullptr,
    /*tp_iternext*/ nullptr,
    /*tp_methods*/ BPy_StrokeAttribute_methods,
    /*tp_members*/ nullptr,
    /*tp_getset*/ BPy_StrokeAttribute_getseters,
    /*tp_base*/ nullptr,
    /*tp_dict*/ nullptr,
    /*tp_descr_get*/ nullptr,
    /*tp_descr_set*/ nullptr,
    /*tp_dictoffset*/ 0,
    /*tp_init*/ (initproc)StrokeAttribute_init,
    /*tp_alloc*/ nullptr,
    /*tp_new*/ PyType_GenericNew,
};

///////////////////////////////////////////////////////////////////////////////////////////

#ifdef __cplusplus
}
#endif