diff --git a/images/ClusterDemo_01.png b/images/ClusterDemo_01.png index 7fc2ddbda..c9b0ca7fd 100644 Binary files a/images/ClusterDemo_01.png and b/images/ClusterDemo_01.png differ diff --git a/images/CombinedPlots_03.png b/images/CombinedPlots_03.png index faac676a0..52a90c1b4 100644 Binary files a/images/CombinedPlots_03.png and b/images/CombinedPlots_03.png differ diff --git a/images/EBSDProfile_01.png b/images/EBSDProfile_01.png index 7d2afcc4c..3c059f4a4 100644 Binary files a/images/EBSDProfile_01.png and b/images/EBSDProfile_01.png differ diff --git a/images/EBSDProfile_02.png b/images/EBSDProfile_02.png index 8ea848b50..470e54725 100644 Binary files a/images/EBSDProfile_02.png and b/images/EBSDProfile_02.png differ diff --git a/images/GrainGraphBasedReconstruction_11.png b/images/GrainGraphBasedReconstruction_11.png index d99b5698a..67d776e28 100644 Binary files a/images/GrainGraphBasedReconstruction_11.png and b/images/GrainGraphBasedReconstruction_11.png differ diff --git a/images/GrainGraphBasedReconstruction_15.png b/images/GrainGraphBasedReconstruction_15.png index 4a4d2c4e5..ad71a590a 100644 Binary files a/images/GrainGraphBasedReconstruction_15.png and b/images/GrainGraphBasedReconstruction_15.png differ diff --git a/images/OrientationInversePoleFigure_03.png b/images/OrientationInversePoleFigure_03.png index 50a24c260..af72aab25 100644 Binary files a/images/OrientationInversePoleFigure_03.png and b/images/OrientationInversePoleFigure_03.png differ diff --git a/images/OrientationInversePoleFigure_04.png b/images/OrientationInversePoleFigure_04.png index 3152f98d1..3e88b4610 100644 Binary files a/images/OrientationInversePoleFigure_04.png and b/images/OrientationInversePoleFigure_04.png differ diff --git a/images/OrientationPoleFigure_03.png b/images/OrientationPoleFigure_03.png index 57abaad31..b1fd7e1eb 100644 Binary files a/images/OrientationPoleFigure_03.png and b/images/OrientationPoleFigure_03.png differ diff --git a/images/ParentChildVariants_01.png b/images/ParentChildVariants_01.png index 8736d0d07..a84081647 100644 Binary files a/images/ParentChildVariants_01.png and b/images/ParentChildVariants_01.png differ diff --git a/images/PlotTypes_03.png b/images/PlotTypes_03.png index 88531200f..9d3547083 100644 Binary files a/images/PlotTypes_03.png and b/images/PlotTypes_03.png differ diff --git a/images/TiltAndTwistBoundaries_01.png b/images/TiltAndTwistBoundaries_01.png index 202f054ff..693b6d574 100644 Binary files a/images/TiltAndTwistBoundaries_01.png and b/images/TiltAndTwistBoundaries_01.png differ diff --git a/images/TransformationTexture_01.png b/images/TransformationTexture_01.png index 088450188..d42304814 100644 Binary files a/images/TransformationTexture_01.png and b/images/TransformationTexture_01.png differ diff --git a/images/TransformationTexture_02.png b/images/TransformationTexture_02.png index 14c79c945..01a3fabde 100644 Binary files a/images/TransformationTexture_02.png and b/images/TransformationTexture_02.png differ diff --git a/images/VectorsAxes_03.png b/images/VectorsAxes_03.png index 67a68b355..0dbe1da72 100644 Binary files a/images/VectorsAxes_03.png and b/images/VectorsAxes_03.png differ diff --git a/images/VectorsAxes_04.png b/images/VectorsAxes_04.png index b470fbbb2..175030009 100644 Binary files a/images/VectorsAxes_04.png and b/images/VectorsAxes_04.png differ diff --git a/pages/documentation_matlab/CrystalReferenceSystem.html b/pages/documentation_matlab/CrystalReferenceSystem.html index d329544f7..e1d3fb39d 100644 --- a/pages/documentation_matlab/CrystalReferenceSystem.html +++ b/pages/documentation_matlab/CrystalReferenceSystem.html @@ -102,9 +102,9 @@
i.e. we see only the positive and negative rhomboedrons, but the hexagonal prism are to far away from the origin to cut the shape. We may decrease the distance, by multiplying the corresponding normal with a factor larger then 1.
+i.e. we see only the positive and negative rhododendrons, but the hexagonal prism are to far away from the origin to cut the shape. We may decrease the distance, by multiplying the corresponding normal with a factor larger then 1.
{% highlight matlab %} N = [2*m,r,z]; cS = crystalShape(N); -plot(cS) +plot(cS,'colored') {% endhighlight %}Next in a typical Quartz crystal the negative rhomboedron is a bit smaller then the positive rhomboedron. Lets correct for this.
+Next in a typical Quartz crystal the negative rhododendron is a bit smaller then the positive rhododendron. Lets correct for this.
{% highlight matlab %} % collect the face normal with the right scaling N = [2*m,r,0.9*z]; cS = crystalShape(N); -plot(cS) +plot(cS,'colored') {% endhighlight %}We may colorize the faces according to their lattice planes using the command
-{% highlight matlab %} plot(cS,'colored') {% endhighlight %}or even label the faces directly
-{% highlight matlab %} -plot(cS) -N = unique(cS.N.symmetrise,'noSymmetry','stable'); -fC = cS.faceCenter; - -for i = 1:length(N) - text3(fC(i),char(round(N(i)),'latex'),'scaling',1.1,'interpreter','latex') -end -{% endhighlight %} -We see that defining a complicated crystal shape is a tedious work. To this end MTEX allows to model the shape with a habitus and a extension parameter. This approach has been developed by J. Enderlein in A package for displaying crystal morphology. Mathematical Journal, 7(1), 1997. The two parameters are used to model the distance of a face from the origin. Setting all parameters to one we obtain
{% highlight matlab %} % take the face normals unscaled @@ -339,16 +318,16 @@The scale parameter models the inverse extension of the crystal in each dimension. In order to make the crystal a bit longer and the negative rhomboedrons smaller we could do
+The scale parameter models the inverse extension of the crystal in each dimension. In order to make the crystal a bit longer and the negative rhododendrons smaller we could do
{% highlight matlab %} -extension = [0.9 1.1 1]; +extension = [1 1.2 1.1]; cS = crystalShape(N,habitus,extension); plot(cS,'colored') {% endhighlight %}Next the habitus parameter describes how close faces with mixed hkl are to the origin. If we increase the habitus parameter the trapezohedron and the bipyramid become more and more dominant
{% highlight matlab %} @@ -365,49 +344,52 @@A specific face of the crystal shape may be selected by its normal vector
{% highlight matlab %} plot(cS) hold on plot(cS(Miller(0,-1,1,0,cs)),'FaceColor','DarkRed') hold off + +% zoom a bit out to fit the screen +camzoom(0.7) {% endhighlight %}