fake-bge-module 20250219__py3-none-any.whl → 20250221__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -359,7 +359,7 @@ def brush_settings(layout, context, brush, popover=False):
359
359
 
360
360
  """
361
361
 
362
- def brush_settings_advanced(layout, context, brush, popover=False):
362
+ def brush_settings_advanced(layout, context, settings, brush, popover=False):
363
363
  """Draw advanced brush settings for Sculpt, Texture/Vertex/Weight Paint modes."""
364
364
 
365
365
  def brush_shared_settings(layout, context, brush, popover=False):
@@ -4191,7 +4191,7 @@ class VIEW3D_MT_select_edit_metaball(bpy.types.Menu):
4191
4191
  :param _context:
4192
4192
  """
4193
4193
 
4194
- class VIEW3D_MT_select_edit_point_cloud(bpy.types.Menu):
4194
+ class VIEW3D_MT_select_edit_pointcloud(bpy.types.Menu):
4195
4195
  bl_label: typing.Any
4196
4196
  bl_rna: typing.Any
4197
4197
  id_data: typing.Any
@@ -400,7 +400,7 @@ type ContextModeItems = typing.Literal[
400
400
  "EDIT_METABALL", # Metaball Edit.
401
401
  "EDIT_LATTICE", # Lattice Edit.
402
402
  "EDIT_GREASE_PENCIL", # Grease Pencil Edit.
403
- "EDIT_POINT_CLOUD", # Point Cloud Edit.
403
+ "EDIT_POINTCLOUD", # Point Cloud Edit.
404
404
  "POSE", # Pose.
405
405
  "SCULPT", # Sculpt.
406
406
  "PAINT_WEIGHT", # Weight Paint.
@@ -803,6 +803,9 @@ type GreasePencilSelectmodeItems = typing.Literal[
803
803
  ]
804
804
  type IconItems = typing.Literal[
805
805
  "NONE", # NONE.
806
+ "CHAR_NOTDEF", # CHAR_NOTDEF.
807
+ "CHAR_REPLACEMENT", # CHAR_REPLACEMENT.
808
+ "NOT_FOUND", # NOT_FOUND.
806
809
  "BLANK1", # BLANK1.
807
810
  "AUTOMERGE_OFF", # AUTOMERGE_OFF.
808
811
  "AUTOMERGE_ON", # AUTOMERGE_ON.
@@ -875,6 +878,7 @@ type IconItems = typing.Literal[
875
878
  "GHOST_DISABLED", # GHOST_DISABLED.
876
879
  "GHOST_ENABLED", # GHOST_ENABLED.
877
880
  "GRIP", # GRIP.
881
+ "GRIP_V", # GRIP_V.
878
882
  "HAND", # HAND.
879
883
  "HELP", # HELP.
880
884
  "LINKED", # LINKED.
bpy/ops/__init__.pyi CHANGED
@@ -208,7 +208,7 @@ from . import paint as paint
208
208
  from . import paintcurve as paintcurve
209
209
  from . import palette as palette
210
210
  from . import particle as particle
211
- from . import point_cloud as point_cloud
211
+ from . import pointcloud as pointcloud
212
212
  from . import pose as pose
213
213
  from . import poselib as poselib
214
214
  from . import preferences as preferences
@@ -566,8 +566,7 @@ def convert(
566
566
  undo: bool | None = None,
567
567
  /,
568
568
  *,
569
- target: typing.Literal["CURVE", "MESH", "POINTCLOUD", "CURVES", "GREASEPENCIL"]
570
- | None = "MESH",
569
+ target: typing.Literal["CURVE", "MESH", "CURVES", "GREASEPENCIL"] | None = "MESH",
571
570
  keep_original: bool | None = False,
572
571
  merge_customdata: bool | None = True,
573
572
  thickness: int | None = 5,
@@ -584,17 +583,14 @@ def convert(
584
583
  Curve -- Curve from Mesh or Text objects.
585
584
 
586
585
  MESH
587
- Mesh -- Mesh from Curve, Surface, Metaball, Text, or Point Cloud objects.
588
-
589
- POINTCLOUD
590
- Point Cloud -- Point Cloud from Mesh objects.
586
+ Mesh -- Mesh from Curve, Surface, Metaball, or Text objects.
591
587
 
592
588
  CURVES
593
589
  Curves -- Curves from evaluated curve data.
594
590
 
595
591
  GREASEPENCIL
596
592
  Grease Pencil -- Grease Pencil from Curve or Mesh objects.
597
- :type target: typing.Literal['CURVE','MESH','POINTCLOUD','CURVES','GREASEPENCIL'] | None
593
+ :type target: typing.Literal['CURVE','MESH','CURVES','GREASEPENCIL'] | None
598
594
  :param keep_original: Keep Original, Keep original objects instead of replacing them
599
595
  :type keep_original: bool | None
600
596
  :param merge_customdata: Merge UVs, Merge UV coordinates that share a vertex to account for imprecision in some modifiers
@@ -55,15 +55,15 @@ def duplicate_move(
55
55
  undo: bool | None = None,
56
56
  /,
57
57
  *,
58
- POINT_CLOUD_OT_duplicate: typing.Any | None = None,
58
+ POINTCLOUD_OT_duplicate: duplicate | None = None,
59
59
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
60
60
  ):
61
61
  """Make copies of selected elements and move them
62
62
 
63
63
  :type execution_context: int | str | None
64
64
  :type undo: bool | None
65
- :param POINT_CLOUD_OT_duplicate: Duplicate, Copy selected points
66
- :type POINT_CLOUD_OT_duplicate: typing.Any | None
65
+ :param POINTCLOUD_OT_duplicate: Duplicate, Copy selected points
66
+ :type POINTCLOUD_OT_duplicate: duplicate | None
67
67
  :param TRANSFORM_OT_translate: Move, Move selected items
68
68
  :type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
69
69
  """
@@ -95,6 +95,24 @@ def select_all(
95
95
  :type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
96
96
  """
97
97
 
98
+ def select_random(
99
+ execution_context: int | str | None = None,
100
+ undo: bool | None = None,
101
+ /,
102
+ *,
103
+ seed: int | None = 0,
104
+ probability: float | None = 0.5,
105
+ ):
106
+ """Randomizes existing selection or create new random selection
107
+
108
+ :type execution_context: int | str | None
109
+ :type undo: bool | None
110
+ :param seed: Seed, Source of randomness
111
+ :type seed: int | None
112
+ :param probability: Probability, Chance of every point being included in the selection
113
+ :type probability: float | None
114
+ """
115
+
98
116
  def separate(execution_context: int | str | None = None, undo: bool | None = None):
99
117
  """Separate selected geometry into a new point cloud
100
118
 
bpy/types/__init__.pyi CHANGED
@@ -60161,7 +60161,6 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
60161
60161
  * BlendDataImages.load
60162
60162
  * BlendDataImages.new
60163
60163
  * BlendDataImages.remove
60164
- * Brush.clone_image
60165
60164
  * CameraBackgroundImage.image
60166
60165
  * CompositorNodeCryptomatteV2.image
60167
60166
  * CompositorNodeImage.image
@@ -125714,24 +125713,6 @@ class Brush(ID, bpy_struct):
125714
125713
  :type: BrushCapabilities
125715
125714
  """
125716
125715
 
125717
- clone_alpha: float
125718
- """ Opacity of clone image display
125719
-
125720
- :type: float
125721
- """
125722
-
125723
- clone_image: Image | None
125724
- """ Image for clone brushes
125725
-
125726
- :type: Image | None
125727
- """
125728
-
125729
- clone_offset: mathutils.Vector
125730
- """
125731
-
125732
- :type: mathutils.Vector
125733
- """
125734
-
125735
125716
  cloth_constraint_softbody_strength: float
125736
125717
  """ How much the cloth preserves the original shape, acting as a soft body
125737
125718
 
@@ -139373,12 +139354,6 @@ class Context(bpy_struct):
139373
139354
  """
139374
139355
 
139375
139356
  curves: typing.Any
139376
- pointcloud: PointCloud | None
139377
- """
139378
-
139379
- :type: PointCloud | None
139380
- """
139381
-
139382
139357
  volume: Volume | None
139383
139358
  """
139384
139359
 
@@ -165515,7 +165490,7 @@ class GeometryNodeTree(NodeTree, ID, bpy_struct):
165515
165490
  :type: bool
165516
165491
  """
165517
165492
 
165518
- is_type_point_cloud: bool
165493
+ is_type_pointcloud: bool
165519
165494
  """ The node group is used for point clouds
165520
165495
 
165521
165496
  :type: bool
@@ -173604,12 +173579,24 @@ class ImagePaint(Paint, bpy_struct):
173604
173579
  :type: Image | None
173605
173580
  """
173606
173581
 
173582
+ clone_alpha: float
173583
+ """ Opacity of clone image display
173584
+
173585
+ :type: float
173586
+ """
173587
+
173607
173588
  clone_image: Image | None
173608
173589
  """ Image used as clone source
173609
173590
 
173610
173591
  :type: Image | None
173611
173592
  """
173612
173593
 
173594
+ clone_offset: mathutils.Vector
173595
+ """
173596
+
173597
+ :type: mathutils.Vector
173598
+ """
173599
+
173613
173600
  dither: float
173614
173601
  """ Amount of dithering when painting on byte images
173615
173602
 
@@ -237320,9 +237307,8 @@ class UIList(bpy_struct):
237320
237307
  icon: int | None,
237321
237308
  active_data: typing.Any,
237322
237309
  active_property: str | None,
237323
- *,
237324
- index: int | None = 0,
237325
- flt_flag: int | None = 0,
237310
+ index: int | None,
237311
+ flt_flag: int | None,
237326
237312
  ):
237327
237313
  """Draw an item in the list (NOTE: when you define your own draw_item function, you may want to check given 'item' is of the right type...)
237328
237314
 
@@ -247936,7 +247922,7 @@ VIEW3D_MT_select_edit_mesh: bl_ui.space_view3d.VIEW3D_MT_select_edit_mesh
247936
247922
 
247937
247923
  VIEW3D_MT_select_edit_metaball: bl_ui.space_view3d.VIEW3D_MT_select_edit_metaball
247938
247924
 
247939
- VIEW3D_MT_select_edit_point_cloud: bl_ui.space_view3d.VIEW3D_MT_select_edit_point_cloud
247925
+ VIEW3D_MT_select_edit_pointcloud: bl_ui.space_view3d.VIEW3D_MT_select_edit_pointcloud
247940
247926
 
247941
247927
  VIEW3D_MT_select_edit_surface: bl_ui.space_view3d.VIEW3D_MT_select_edit_surface
247942
247928
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: fake-bge-module
3
- Version: 20250219
3
+ Version: 20250221
4
4
  Summary: Collection of the fake Blender Game Engine (BGE) Python API module for the code completion.
5
5
  Author: nutti
6
6
  Author-email: nutti.metro@gmail.com
@@ -162,7 +162,7 @@ bl_ui/properties_material/__init__.pyi,sha256=J3GrRdWFeh4p5w2qKtC5Dwz0XF301ATcsC
162
162
  bl_ui/properties_material_gpencil/__init__.pyi,sha256=nzPF77aPdfB82IJ0Gt5kXMy8Lcsu5m2MmhR_uyUwEIY,8590
163
163
  bl_ui/properties_object/__init__.pyi,sha256=o-OhpX73E-wu2q_Y_Wy8UReG-NLElj83qeSBp6FRpSQ,15319
164
164
  bl_ui/properties_output/__init__.pyi,sha256=1fkDdDyAz2lTcSUnef8fai-1hTw9ztgvJsafPT_8vcU,13760
165
- bl_ui/properties_paint_common/__init__.pyi,sha256=INYsmz0kr7GuYAv9v8p-b6taRlrd782PhlFh3zXtE38,7982
165
+ bl_ui/properties_paint_common/__init__.pyi,sha256=aDxo3QM8DJUqm1tf8VWI5meE_gmpiQJtLSK-hBg8tkU,7992
166
166
  bl_ui/properties_particle/__init__.pyi,sha256=HVO0ZWeKHj7ZNP4Bh8ji6IunnLDTpPDNRVZg6TQ8wOU,43414
167
167
  bl_ui/properties_physics_cloth/__init__.pyi,sha256=z4BUwpMH-UQsZv7OfyPU_HHwCGeL-rcpMyY02M-Ew2Q,10647
168
168
  bl_ui/properties_physics_common/__init__.pyi,sha256=2lJ-nAiO5aVycUimdzvPYJAfVyvsnBdaE9nQ9UN2W4w,1338
@@ -200,7 +200,7 @@ bl_ui/space_toolsystem_common/__init__.pyi,sha256=IFq4tTh_oM6-dQWMZbuRo6HhYinOLB
200
200
  bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=amIcQArvjsuZ7iHNMO3EETPZ1LXkSGRjIwTLtqDkJbk,9946
201
201
  bl_ui/space_topbar/__init__.pyi,sha256=tVupsHc6IdA1o_axDcB1Cbf0o8ARZzgLncMXgguQnWY,15316
202
202
  bl_ui/space_userpref/__init__.pyi,sha256=iLYc94VUBgP3dE6whoVFktEjvqAE-oLGDbtey9Y4L0E,79675
203
- bl_ui/space_view3d/__init__.pyi,sha256=LXzfSS_sGNHEyi1yvKzvcC3fakvFm3urIZhrSv8eGOw,156973
203
+ bl_ui/space_view3d/__init__.pyi,sha256=7OqUOd-Ju0SgIta1uLsQB3cW-z5HE1qOcoRsCYdFD0M,156972
204
204
  bl_ui/space_view3d_toolbar/__init__.pyi,sha256=EG6IIG6nSOJAvIRRxU3TyjEQNWZ_n2tFEB6FlwjIhuw,76295
205
205
  bl_ui/utils/__init__.pyi,sha256=qkgl-AlZI3QD4UUITGIvN9PbifOI4BPkZBpu7WyxMBw,483
206
206
  bl_ui_utils/__init__.pyi,sha256=ZOo9_bgn1c9NiCNalhTplCD2IChG67rU_V3BeG0k4pE,93
@@ -219,14 +219,14 @@ bmesh/utils/__init__.pyi,sha256=XNhFTqYQPL7ZUvljUTQkN0X_3YCS_RyrOgEzqrQZiDg,6235
219
219
  bpy/__init__.pyi,sha256=KeQc-X1TjhtunVxLDy0IK0cMmurLmAQm4fX_D__UPJo,464
220
220
  bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
221
221
  bpy/_typing/__init__.pyi,sha256=7bioadpQS-8UKR8TdY1m4MqUFqKVy8h13sPIt28ZUqs,99
222
- bpy/_typing/rna_enums/__init__.pyi,sha256=GIYXtHNhIYCj7bHNwYiPf2Ntz6pb210FINgya56YG5k,139488
222
+ bpy/_typing/rna_enums/__init__.pyi,sha256=nNGo1tQHkeeoPg6eTXza0DSQ8JoUha15U4dsninFprs,139623
223
223
  bpy/app/__init__.pyi,sha256=t3vFsFHKJtyie_ViY1e824cJHmVTdV5Wpoad0dEQyeE,8767
224
224
  bpy/app/handlers/__init__.pyi,sha256=paak3tw5Edrs_VfQUvgZNA6YsTeuBULkNe9mgo2TzI8,7116
225
225
  bpy/app/icons/__init__.pyi,sha256=w18Xn9y0T54WlpHyhC3_y8a3Lq9kuo3U72Bu7wOY41A,928
226
226
  bpy/app/timers/__init__.pyi,sha256=vtrATRAmkTfP1CknievwpOCC19cPOMowyLTE6Ie9GSg,2126
227
227
  bpy/app/translations/__init__.pyi,sha256=rrUs88RJakTJ8IZzE7oRunD_HqLByX5tqmLSrQ_e8dQ,7007
228
228
  bpy/msgbus/__init__.pyi,sha256=e9cmp_Wq7FA5pDTQQJ2s0_I84bEJMu8J-5Lu5gNoClM,2954
229
- bpy/ops/__init__.pyi,sha256=33_Mt8LkTG1fZzOtVusVGPvboMjUzvQUHsra46POHBQ,5629
229
+ bpy/ops/__init__.pyi,sha256=K4x89H6Q5Beutgc98_dRWw-KTQ1Y_pQU-JaxSZ_6LvY,5627
230
230
  bpy/ops/action/__init__.pyi,sha256=LBNWtp-Nd2C-ae5OK4WTxg-ztiufJ4OLan-f6W7EJXo,18645
231
231
  bpy/ops/anim/__init__.pyi,sha256=VM6kJF9mPnpDINvcVqrf-fEHlSRzn-P1vmCPvK8KDwA,24980
232
232
  bpy/ops/armature/__init__.pyi,sha256=k6XyBQsnS9j-7cKqfmN4qYVyhv9gQVwX45g-3DJ8jro,20909
@@ -271,13 +271,13 @@ bpy/ops/mball/__init__.pyi,sha256=VRZZbMhoN6OWmsG-344hmoHQ-_qcjRuisuzJvLxGobI,41
271
271
  bpy/ops/mesh/__init__.pyi,sha256=Gp2MK7c7qJtOinM72vvDDYV3wIAbFenIbej0hWcHj90,133710
272
272
  bpy/ops/nla/__init__.pyi,sha256=qWBmb8nOy9c6H_rKEjt3spO-TnwPaqJc1meOgDy5uaY,18145
273
273
  bpy/ops/node/__init__.pyi,sha256=m1fchmX8mU4_B_IA00VGljBqo_EFVHQ1wg6swSnxTdY,53596
274
- bpy/ops/object/__init__.pyi,sha256=hLToMQ9U1aMoY5bWCHbpit9Hob-T-8ys7ezHK9E5hXo,172336
274
+ bpy/ops/object/__init__.pyi,sha256=yzUuIGGjwNDGLO2IHtmEax94v-ZrCMJote1W3hQoGW0,172226
275
275
  bpy/ops/outliner/__init__.pyi,sha256=la079qCOhk_Bf_FiEtjcNh0jP97X0sY5aPgnAxOT4x0,27743
276
276
  bpy/ops/paint/__init__.pyi,sha256=Q-EnWEXXc_RyYXxGY0x4zTQbmNwd4HOaPxashYEWwpk,37665
277
277
  bpy/ops/paintcurve/__init__.pyi,sha256=sJfa-6TohaHNlvBFZ5X2vhjeMCp91in2K6UqwIF3d80,2980
278
278
  bpy/ops/palette/__init__.pyi,sha256=RD7rkE6f28SyME46hM3HwjWKCgKFtOXZDDPOO6mQB0Q,2093
279
279
  bpy/ops/particle/__init__.pyi,sha256=fvUbIxeb5nxdxJAK6wWu0AsCBIpy3cCKXMNKY2ZIJqM,13621
280
- bpy/ops/point_cloud/__init__.pyi,sha256=SaJsHeCGj2e4iW9vfLVQsZX7EmshxoFI1pVpTeMrcUs,3321
280
+ bpy/ops/pointcloud/__init__.pyi,sha256=dB3XaaDLeHkeSTERVVOG0UYyg75HwGO1cYrhU3XB9sM,3843
281
281
  bpy/ops/pose/__init__.pyi,sha256=X3uT13DBbdw1nsmBhbId71DYAjYEGL6WtapfpwpihzA,26770
282
282
  bpy/ops/poselib/__init__.pyi,sha256=gznUsY5ppqRYjKMHdUHXvCYF0n568JR6t-djfMV9rrU,5374
283
283
  bpy/ops/preferences/__init__.pyi,sha256=1IgwxC10pDOYBY7qhdYOc-VW-I0fpTJXo1LINr1120s,19481
@@ -307,7 +307,7 @@ bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHC
307
307
  bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
308
308
  bpy/path/__init__.pyi,sha256=emlV7ocbsOuOSMzxJXr6ldKRk2-_K0DWlKc3Ylt5dsU,5484
309
309
  bpy/props/__init__.pyi,sha256=Ky1J5ndL8p_pvAaQakudyKKVynbr1NxXvzoN-5E9_I0,35237
310
- bpy/types/__init__.pyi,sha256=qYUfz1CiUcCZpVd_8JWXN7k4CMT3kKrudSYfdRioSaw,5705433
310
+ bpy/types/__init__.pyi,sha256=Z8itRjNmjqutdfHPUXrfyrVJzZk6OXAm-P6udnzpAfY,5705213
311
311
  bpy/utils/__init__.pyi,sha256=y7dfOaWh9PE_q0Qs8gEKOm71RQuMZI0wQ1B07DCDHF4,14909
312
312
  bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
313
313
  bpy/utils/units/__init__.pyi,sha256=QuXx22JjmObRmP_KcdoqOlDSvVtXZHeK5nTIvwjcUnI,2645
@@ -342,7 +342,7 @@ freestyle/functions/__init__.pyi,sha256=sEPnGHwZm8XBlfE7CKLros3CKJlAh1h1FI74nBTE
342
342
  freestyle/predicates/__init__.pyi,sha256=TI-9arpIRbq7ePsxHS-d-4iIj54uHMp-ZyGhPVODMPg,13461
343
343
  freestyle/shaders/__init__.pyi,sha256=4a-rY8mkkIcsnIvYGcP8YgAULdJENDJnncju2CjhQVg,24014
344
344
  freestyle/types/__init__.pyi,sha256=Dmb8LokYlO2lCfmDwPX5MwwpnHHSRaXU2t6Nu37Rzjg,100200
345
- freestyle/utils/__init__.pyi,sha256=lW5JWrilkFTvRmtYoS3hbmWfj2abo2hHsvp4eyGLbcQ,5108
345
+ freestyle/utils/__init__.pyi,sha256=DdX3Qj2yTIu8jXdOAnf_9yKhJ5AQFnS_zVvSAdTfBpU,5108
346
346
  freestyle/utils/ContextFunctions/__init__.pyi,sha256=fPDfiBEjpoqXQhBhmHJ6WxG9oLMItwQ32MxKQz_c9_I,3445
347
347
  gpu/__init__.pyi,sha256=Q-AbyJO85pPYcwXNWtvgAhFGGJ6OnnHrlsXQxur9jhs,7999
348
348
  gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -389,7 +389,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
389
389
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
390
390
  rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
391
391
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
392
- fake_bge_module-20250219.dist-info/METADATA,sha256=_bLfL8Eg1gS09v4Ronh3cqrM9dBEqGJ9Y_JUBEax6wc,4872
393
- fake_bge_module-20250219.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
394
- fake_bge_module-20250219.dist-info/top_level.txt,sha256=eE5ylpw84TnTp2h-RCfTJgCBykd4PsHdymQwBM_dVls,544
395
- fake_bge_module-20250219.dist-info/RECORD,,
392
+ fake_bge_module-20250221.dist-info/METADATA,sha256=cdMgFEqsj6_D3ZBHaHTgQG-kIMD-pyW4sO0ksJ7Y6NY,4872
393
+ fake_bge_module-20250221.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
394
+ fake_bge_module-20250221.dist-info/top_level.txt,sha256=eE5ylpw84TnTp2h-RCfTJgCBykd4PsHdymQwBM_dVls,544
395
+ fake_bge_module-20250221.dist-info/RECORD,,
@@ -124,7 +124,7 @@ def material_from_fedge(fe):
124
124
  """get the diffuse RGBA color from an FEdge"""
125
125
 
126
126
  def normal_at_I0D(it): ...
127
- def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
127
+ def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
128
128
  """Yields a tuple containing the previous and current object"""
129
129
 
130
130
  def rgb_to_bw(r, g, b):