Border alignment artifact

From Dynamo
Revision as of 14:33, 15 April 2016 by Daniel Castaño (talk | contribs) (Created page with " When rotating a cube, the cube representing the rotated particle will have some areas where there is no information. See the effect here. {/code} u1=dynamo_rot(rand(64,...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

When rotating a cube, the cube representing the rotated particle will have some areas where there is no information.

See the effect here.

{/code}
 u1=dynamo_rot(rand(64,64,64),[45,45,45]);
 u2=dpkgeom.rotation.sharpRot(rand(64,64,64),[45,45,45]);

  figure;
  subplot(1,2,1);dslices(u1);subplot(1,2,2);dslices(u2);

{code}