分享

HT for Web自定义3D模型的WebGL应用

 看见就非常 2015-09-18
摘要 有不少朋友询问《HTML5 Web 客户端五种离线存储方式汇总》文章例子的3D表计模型是如何生成的,这个例子是通过导入3dmax设计好的表计模型,然后通过obj格式导入到HT for Web系统中进行控制,这种方式特别适合复杂模型的应用场景,但对于监控系统的很多应用其实并不需要专业的美工使用专业的3D编辑工具,完全通过HT for Web预定义的和内置自定义3D模型API就能满足很多应用,这里介绍几种场景的自定义3D模型应用。

Screen Shot 2015-01-07 at 11.53.23 PM

有不少朋友询问《HTML5 Web 客户端五种离线存储方式汇总》文章例子的3D表计模型是如何生成的,这个例子是通过导入3dmax设计好的表计模型,然后通过obj格式导入到HT for Web系统中进行控制,这种方式特别适合复杂模型的应用场景,但对于监控系统的很多应用其实并不需要专业的美工使用专业的3D编辑工具,完全通过HT for Web预定义的和内置自定义3D模型API就能满足很多应用,这里介绍几种场景的自定义3D模型应用。

Screen Shot 2015-01-07 at 11.48.45 PM

上图是采用HT提供的createRingModel函数,通过编辑2D的多边形生成对应的环状的3D模型,对于花瓶碗杯等环形对称的物体很适合采用该函数构建。除了createRingModel外,HT的建模手册中的custommodel自定义模型例子,还采用了createExtrusionModel等更多的自定义模型API构建了一个餐桌椅和墙面的场景,其效果如下:

Screen Shot 2015-01-07 at 11.46.14 PM

HT内置的基础模型也有很多参数可调节设置出多种模型效果,参见HT建模手册的如下例子:

Screen Shot 2015-01-07 at 11.49.56 PM

自定义模型还可用于构建如机房、机框、板卡和端口的常见电信网管监控模型:http://v.youku.com/v_show/id_XODY2ODc0ODY0.html

Screen Shot 2015-01-07 at 11.50.54 PM

该EMS设备管理系统例子3D模型和Tree组件通过HT强大灵活的模型与图形的数据绑定功能,从而实现树上自定义图标和3D自定义模型的数据共享,实时一致刷新效果,以下为该EMS例子的全部JavaScript代码:

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
function init(){                                 
    dm = new ht.DataModel();                
    treeView = new ht.widget.TreeView(dm);                                                                                                 
    g3d = new ht.graph3d.Graph3dView(dm);                          
    mainSplit = new ht.widget.SplitView(treeView, g3d, 'h', 0.2);   
    view = mainSplit.getView();  
    view.className = 'main';
    document.body.appendChild(view);    
    window.addEventListener('resize'function (e) {
        mainSplit.invalidate();
    }, false);                         
    register2DImage();
    register3DModel();
    addModel(); 
    g3d.setGridVisible(true); 
    g3d.setGridSize(30);
    g3d.setGridGap(50);
    g3d.setEye([200, 200, 600]);
    g3d.setCenter([0, 200, 0]);
    g3d.getView().style.background = '#F9F9F9';                 
    g3d.getLabel = function(data){
        return data.s('label');
    };
    dm.sm().setFilterFunc(function(data){
        return data !== wall;
    });
    treeView.setVisibleFunc(function(data){
        return data !== wall;
    });                
    treeView.expandAll();
}
function register2DImage(){
    ht.Default.setImage('ems-frame', {
        width: 18,
        height: 18,
        comps: [
            {
                type: 'rect',
                rect: [5, 4, 8, 11],
                borderWidth: 2,
                borderColor: '#34495E'
            }                         
    ]});        
    ht.Default.setImage('ems-pane', {
        width: 18,
        height: 18,
        comps: [
            {
                type: 'rect',
                rect: [0, 4, 18, 10],
                background: {func: 'style@shape3d.color'}
            }                         
    ]});     
    ht.Default.setImage('ems-block', {
        width: 18,
        height: 18,
        comps: [
            {
                type: 'circle',
                rect: [0, 2, 18, 10],
                background: {
                    func: 'attr@circleColor',
                    value: '#3498DB'                               
                }
            }, 
            {
                type: 'rect',
                rect: [4, 14, 10, 3],
                background: {
                    func: 'attr@rectColor',
                    value: '#3498DB'                               
                }
            }                           
    ]});                 
}
function register3DModel(){
    ht.Default.setShape3dModel('ems-frame', ht.Default.createFrameModel(0.1, 0, 0.1, {top: true, bottom: true, back: true}));       
    ht.Default.setShape3dModel('ems-block', [
        {
            shape3d: ht.Default.createCylinderModel(32, 0, 32, falsefalsetruetrue),   
            r3: [Math.PI/2, 0, 0],   
            color: {
                func: 'attr@circleColor',
                value: '#3498DB'
            }     
        },
        {
            shape3d: 'box',
            s3: [1, 0.2, 1], 
            t3: [0, -0.7, 0],
            color: {
                func: 'attr@rectColor',
                value: '#3498DB'
            }
        }
    ]);                  
}
function addModel(){
    wall = new ht.Shape();
    wall.setName('Wall');
    wall.setPoints(new ht.List([
        {x: -750, y: 750},
        {x: -750, y: -750},
        {x: 750, y: -750},
        {x: 750, y: 750}
    ]));
    wall.setTall(400);
    wall.setElevation(200);
    wall.s({
        'shape.border.width': 5,
        'shape.border.color''rgba(20, 20, 20, 0.8)',
        'shape.background'null,    
        'all.color''rgba(102, 192, 218, 0.95)',
        'all.transparent'true,
        'all.reverse.cull'true
    });
    dm.add(wall);                                               
    var frame = new ht.Node();
    frame.setName('Main Frame');
    frame.setIcon('ems-frame');
    frame.s3(120, 300, 120);
    frame.p3(0, 152, 0);
    frame.s({
        'shape3d''ems-frame',
        'shape3d.color''#34495E',
        'label''www.',
        'label.color''white',
        'label.background''#3498DB',
        'label.position': 6,
        'label.t3': [-6, -54, 6],
        'label.r3': [0, Math.PI/4, Math.PI/2]
    });
    dm.add(frame);                                
    var colors = ['#9C8CE7''#00C59D''#A741B6''#F5C700''#31485F''#F81F25''#00B862''#3B7DA7'];
    for(var i=0; i<6; i++){
        var pane = new ht.Node();
        pane.setIcon('ems-pane');
        pane.setName('Pane' + (i+1));
        pane.s3(108, 16, 8);                    
        pane.s({
            'shape3d''box',
            'shape3d.color''#ECF0F1'
        });
        pane.setHost(frame);
        pane.setParent(frame);                     
        dm.add(pane);
        if(i < 2){
            for(var j=0; j<8; j++){
                var block = new ht.Node();
                block.setName('block ' + i + '*' + j);
                block.s3(8, 8, 12);                
                block.p3(-39+j*11, 1, 0);
                block.setHost(pane);
                block.setParent(pane); 
                block.setIcon('ems-block');
                block.s({
                    'shape3d''ems-block'
                });                       
                if(i === 1){
                    block.a({
                        'circleColor': colors[j],
                        'rectColor''#00F2CF'
                    });
                }
                dm.add(block);                                        
            }                     
        }else{
            pane.setName('Pane' + (i+1) + ' [ Empty ]');
            pane.s({
                'shape3d.color''#BDC3C7'
            });
        }                   
        pane.p3(0, 265-i*27, 54);
    }                
}


    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多