# 获取集成模型管道流动贴图方向

GET https://api.bimface.com/data/v1/pipe/integrations/{integrate-id}/files/{file-id-hash}/systems/{system-id}/uv-direction

# 说明

获取指定管道系统的流动贴图方向。用于PDMS格式文件流向动画绘制。uvDirection=0代表未解析出流向与uv的关系,uvDirection=0代表流向与uv坐标系正向同向,uvDirection=1代表流向与uv坐标系正向反向。

# 参数

Authorization * Bearer {accessToken} string
*为必填项
# Path
file-id-hash * 子文件id string
integrate-id * 集成id integer (int64)
system-id * 系统id string
*为必填项

# 响应

HTTP代码 说明 类型
200 OK GeneralResponseV1«List«EssentialPipingElementResponseBean»»
401 Unauthorized -
403 Forbidden -
404 Not Found -
# 200响应参数
GeneralResponseV1«List«EssentialPipingElementResponseBean»»
名称 说明 类型
code 样例: "code" string
data 返回数据 < EssentialPipingElementResponseBean >array
id 构件id string
uvDirection 流动方向 int32
message 样例: "message" string

# 生成

  • */*
  • application/json

# HTTP请求示例

# 请求 path
https://api.bimface.com/data/v1/pipe/integrations/0/files/string/systems/string/uv-direction
# 请求 header
"Authorization: Bearer dc671840-bacc-4dc5-a134-97c1918d664b"

# HTTP响应示例

# 响应 200
{
    "code": "bimfaceservice-0000",
    "message": null,
    "data": {
        "flowFrom": [
            "493963"
        ],
        "flowInto": [
            "493565",
            "719490",
            "493578"
        ],
        "id": "493525",
        "in": [
            -8419.8545,
            -5650.9775,
            10350.5
        ],
        "name": "风管[493525]",
        "out": [
            -8419.8545,
            -9610.444,
            10350.5,
            -8419.8545,
            -9610.444,
            10350.5,
            -8419.8545,
            -9860.444,
            10350.5
        ],
        "systemId": [
            "493422"
        ],
        "type": "风管",
        "uvDirection": 0
    }
}