Fundamental Sector edit page

TODO

please expand this chapter

cs = crystalSymmetry('432')

plot(cs)
hold on
plot(cs.fundamentalSector,'color','Red')
hold off
cs = crystalSymmetry
 
  symmetry: 432    
  elements: 24     
  a, b, c : 1, 1, 1
sR = cs.fundamentalSector
sR = sphericalRegion
 
 edge normales: 5
sR.N
ans = vector3d (y↑→x)
 size: 1 x 5
       x      y      z
       0 -0.707  0.707
  -0.707      0  0.707
       1      0      0
       0      1      0
       0      0      1
v = Miller(2,3,1,cs)
v = Miller (432)
  h k l
  2 3 1

We may check whether a direction is inside the fundamental region by the command checkInside

sR.checkInside(v)
ans =
  logical
   0
v.project2FundamentalRegion
ans = Miller (432)
  h k l
  1 2 3
hold on
plot(v)
plot(v.project2FundamentalRegion,'MarkerFaceColor','Red')
hold off