tencentcloud-sdk-ai3d 3.0.1146 → 3.0.1150
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20250513/models.rb +17 -5
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c78fa37fbd1300c405bb267aa971d2fad0caf17
|
4
|
+
data.tar.gz: aa6d69494545c1451810d2f94aae48d4ecbea7a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a00671a24e46da937a130861c429b500db7b1663f6dc162d422d1118fb704eb74cf54c2a2e02e1b11a6963c132d467e0077c1ada821bb61a52e495a3c6a5a5a
|
7
|
+
data.tar.gz: c21bae31409d5a1a6a1fb0694baf6225f3e34bef55f1f648e4943459c12c350b88e199fd6e8966528c952a5c78c42c4b4cf97a2234b420077e65ed3ef8b2eef4
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1150
|
data/lib/v20250513/models.rb
CHANGED
@@ -316,7 +316,7 @@ module TencentCloud
|
|
316
316
|
# @param EnablePBR: 是否开启 PBR材质生成,默认 false。
|
317
317
|
# @type EnablePBR: Boolean
|
318
318
|
# @param FaceCount: 生成3D模型的面数,默认值为500000。
|
319
|
-
# 可支持生成面数范围,参考值:40000-
|
319
|
+
# 可支持生成面数范围,参考值:40000-1500000。
|
320
320
|
# @type FaceCount: Integer
|
321
321
|
# @param GenerateType: 生成任务类型,默认Normal,参考值:
|
322
322
|
# Normal:可生成带纹理的几何模型。
|
@@ -324,10 +324,16 @@ module TencentCloud
|
|
324
324
|
# Geometry:可生成不带纹理的几何模型(白模),选择此任务时,EnablePBR参数不生效。
|
325
325
|
# Sketch:可输入草图或线稿图生成模型,此模式下prompt和ImageUrl/ImageBase64可一起输入。
|
326
326
|
# @type GenerateType: String
|
327
|
+
# @param PolygonType: 该参数仅在GenerateType中选择LowPoly模式可生效。
|
327
328
|
|
328
|
-
|
329
|
+
# 多边形类型,表示模型的表面由几边形网格构成,默认为triangle,参考值:
|
330
|
+
# triangle: 三角形面。
|
331
|
+
# quadrilateral: 四边形面与三角形面混合生成。
|
332
|
+
# @type PolygonType: String
|
329
333
|
|
330
|
-
|
334
|
+
attr_accessor :Prompt, :ImageBase64, :ImageUrl, :MultiViewImages, :EnablePBR, :FaceCount, :GenerateType, :PolygonType
|
335
|
+
|
336
|
+
def initialize(prompt=nil, imagebase64=nil, imageurl=nil, multiviewimages=nil, enablepbr=nil, facecount=nil, generatetype=nil, polygontype=nil)
|
331
337
|
@Prompt = prompt
|
332
338
|
@ImageBase64 = imagebase64
|
333
339
|
@ImageUrl = imageurl
|
@@ -335,6 +341,7 @@ module TencentCloud
|
|
335
341
|
@EnablePBR = enablepbr
|
336
342
|
@FaceCount = facecount
|
337
343
|
@GenerateType = generatetype
|
344
|
+
@PolygonType = polygontype
|
338
345
|
end
|
339
346
|
|
340
347
|
def deserialize(params)
|
@@ -352,6 +359,7 @@ module TencentCloud
|
|
352
359
|
@EnablePBR = params['EnablePBR']
|
353
360
|
@FaceCount = params['FaceCount']
|
354
361
|
@GenerateType = params['GenerateType']
|
362
|
+
@PolygonType = params['PolygonType']
|
355
363
|
end
|
356
364
|
end
|
357
365
|
|
@@ -444,17 +452,21 @@ module TencentCloud
|
|
444
452
|
# @type ViewType: String
|
445
453
|
# @param ViewImageUrl: 图片Url地址
|
446
454
|
# @type ViewImageUrl: String
|
455
|
+
# @param ViewImageBase64: 图片base64地址
|
456
|
+
# @type ViewImageBase64: String
|
447
457
|
|
448
|
-
attr_accessor :ViewType, :ViewImageUrl
|
458
|
+
attr_accessor :ViewType, :ViewImageUrl, :ViewImageBase64
|
449
459
|
|
450
|
-
def initialize(viewtype=nil, viewimageurl=nil)
|
460
|
+
def initialize(viewtype=nil, viewimageurl=nil, viewimagebase64=nil)
|
451
461
|
@ViewType = viewtype
|
452
462
|
@ViewImageUrl = viewimageurl
|
463
|
+
@ViewImageBase64 = viewimagebase64
|
453
464
|
end
|
454
465
|
|
455
466
|
def deserialize(params)
|
456
467
|
@ViewType = params['ViewType']
|
457
468
|
@ViewImageUrl = params['ViewImageUrl']
|
469
|
+
@ViewImageBase64 = params['ViewImageBase64']
|
458
470
|
end
|
459
471
|
end
|
460
472
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-ai3d
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1150
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-09-
|
11
|
+
date: 2025-09-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -33,9 +33,9 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- lib/tencentcloud-sdk-ai3d.rb
|
37
36
|
- lib/v20250513/client.rb
|
38
37
|
- lib/v20250513/models.rb
|
38
|
+
- lib/tencentcloud-sdk-ai3d.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
41
41
|
licenses:
|