Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / FemMesh Class / CreateCircularPlate Method / CreateCircularPlate(Point3D,Double,Int32,Material,Boolean,Boolean,Boolean,Boolean) Method
Plate center
Radius size
Each quadrant will have 3*subdivisionLevel 2 elements. subdivisionLevel must be bigger than 0
Elements material
If true, mesh contains the first quadrant of the circular plate
If true, mesh contains the second quadrant of the circular plate
If true, mesh contains the third quadrant of the circular plate
If true, mesh contains the forth quadrant of the circular plate

In This Topic
    CreateCircularPlate(Point3D,Double,Int32,Material,Boolean,Boolean,Boolean,Boolean) Method
    In This Topic
    Creates a 2D circular FemMesh object.
    Syntax
    'Declaration
     
    Public Overloads Sub CreateCircularPlate( _
       ByVal center As Point3D, _
       ByVal radius As Double, _
       ByVal subdivisionLevel As Integer, _
       ByVal material As Material, _
       ByVal quadrant1 As Boolean, _
       ByVal quadrant2 As Boolean, _
       ByVal quadrant3 As Boolean, _
       ByVal quadrant4 As Boolean _
    ) 
    public void CreateCircularPlate( 
       Point3D center,
       double radius,
       int subdivisionLevel,
       Material material,
       bool quadrant1,
       bool quadrant2,
       bool quadrant3,
       bool quadrant4
    )

    Parameters

    center
    Plate center
    radius
    Radius size
    subdivisionLevel
    Each quadrant will have 3*subdivisionLevel 2 elements. subdivisionLevel must be bigger than 0
    material
    Elements material
    quadrant1
    If true, mesh contains the first quadrant of the circular plate
    quadrant2
    If true, mesh contains the second quadrant of the circular plate
    quadrant3
    If true, mesh contains the third quadrant of the circular plate
    quadrant4
    If true, mesh contains the forth quadrant of the circular plate

    Return Value

    The circular FemMesh object created.
    See Also