# How can I trasform a model in this way?

**URL:** https://discourse.slicer.org/t/how-can-i-trasform-a-model-in-this-way/1079
**Category:** Support
**Created:** [September 18, 2017, 2:10pm UTC](https://discourse.slicer.org/t/how-can-i-trasform-a-model-in-this-way/1079 "2017-09-18T14:10:52Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Ramttoong](https://avatars.discourse-cdn.com/v4/letter/r/edb3f5/32.png) [@Ramttoong](https://discourse.slicer.org/u/Ramttoong)
#### Post date: [September 18, 2017, 2:10pm UTC](https://discourse.slicer.org/t/how-can-i-trasform-a-model-in-this-way/1079/1 "2017-09-18T14:10:52Z")

</div>

I used the ‘representation’ tap in the ‘Model’ module (surface → wireframe).  
But, its pattern is not clear (messy).  
How can I trasform a model in this way? (added a picture)

 ![untitiled](https://us1.discourse-cdn.com/flex002/uploads/slicer/original/3X/9/f/9f6591f82e2cd4b3086d5954c71242118138dc5b.png)

---

<div class="post-metadata">

### Author: ![lassoan](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.slicer.org/lassoan/32/13_2.png) [@lassoan](https://discourse.slicer.org/u/lassoan)
#### Post date: [September 18, 2017, 2:53pm UTC](https://discourse.slicer.org/t/how-can-i-trasform-a-model-in-this-way/1079/2 "2017-09-18T14:53:13Z")

</div>

> [@Ramttoong](#):
>
> But, its pattern is not clear (messy).

What do you mean? The mesh in the picture above looks nice.

> [@Ramttoong](#):
>
> How can I trasform a model in this way?

What do you mean? In what way?

---

<div class="post-metadata">

### Author: ![Ramttoong](https://avatars.discourse-cdn.com/v4/letter/r/edb3f5/32.png) [@Ramttoong](https://discourse.slicer.org/u/Ramttoong)
#### Post date: [September 20, 2017, 12:31am UTC](https://discourse.slicer.org/t/how-can-i-trasform-a-model-in-this-way/1079/3 "2017-09-20T00:31:41Z")

</div>

Add a picture. (It’s not my work, just example made by another man.)

I adjusted the transparency by ‘opacity’, but it was not like that above.

 ![untitiled](https://us1.discourse-cdn.com/flex002/uploads/slicer/original/3X/9/f/9f6591f82e2cd4b3086d5954c71242118138dc5b.png)

---

<div class="post-metadata">

### Author: ![lassoan](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.slicer.org/lassoan/32/13_2.png) [@lassoan](https://discourse.slicer.org/u/lassoan)
#### Post date: [September 20, 2017, 12:34am UTC](https://discourse.slicer.org/t/how-can-i-trasform-a-model-in-this-way/1079/4 "2017-09-20T00:34:54Z")

</div>

In Models module, Display / Representation section, change Representation from `Surface` (default) to `Wireframe`.

---

<div class="post-metadata">

### Author: ![brhoom](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.slicer.org/brhoom/32/1228_2.png) [@brhoom](https://discourse.slicer.org/u/brhoom)
#### Post date: [October 17, 2018, 11:15am UTC](https://discourse.slicer.org/t/how-can-i-trasform-a-model-in-this-way/1079/5 "2018-10-17T11:15:43Z")

</div>

Here is the python script

```
 n= getNode('muModel')
 d=n.GetDisplayNode()
 d.SetRepresentation(slicer.vtkMRMLDisplayNode.WireframeRepresentation)
```
