Canguro.Analysis.AreaDeformationCalculator.GetDeformationVectors C# (CSharp) Méthode

GetDeformationVectors() public méthode

public GetDeformationVectors ( AreaElement area, System.Vector3 localAxes, AbstractCase abstractCase, System.Vector3 ctrlPoints, System.Vector3 deformations ) : bool
area Canguro.Model.AreaElement
localAxes System.Vector3
abstractCase Canguro.Model.Load.AbstractCase
ctrlPoints System.Vector3
deformations System.Vector3
Résultat bool
        public bool GetDeformationVectors(AreaElement area, Vector3[] localAxes, AbstractCase abstractCase, Vector3[] ctrlPoints, Vector3[] deformations)
        {
            // Dummy routine

            int verticesInList= ctrlPoints.Length;

            for (int i = 0; i < verticesInList; ++i)
                getDeformationAt(area, abstractCase, ctrlPoints[i], ref deformations[i]);

            return true;
        }