Hi All,
Let assume that we have a half 3D mesh object and want to mirror it, in C# 2008 Express. That is, we want to have its simetrical part according to the center line of the object.
Could you help me to do that.
Thanks in advance.
Hi All,
Let assume that we have a half 3D mesh object and want to mirror it, in C# 2008 Express. That is, we want to have its simetrical part according to the center line of the object.
Could you help me to do that.
Thanks in advance.
You can try scaling it negatively in one axis, that should essentially flip it.
So if its scale is (1, 1, 1), change it to (-1, 1, 1).
hmmmm... here is the algorithm I would use:
This should give you a reflection of the object about the line you wish to rotate around.