Пример #1
0
        public CompoundMeshDraft Add(CompoundMeshDraft compoundDraft)
        {
            if (compoundDraft == null) throw new ArgumentNullException(nameof(compoundDraft));

            meshDrafts.AddRange(compoundDraft.meshDrafts);
            return this;
        }
Пример #2
0
        public CompoundMeshDraft Add(CompoundMeshDraft compoundDraft)
        {
            if (compoundDraft == null)
            {
                throw new ArgumentNullException("compoundDraft");
            }

            meshDrafts.AddRange(compoundDraft.meshDrafts);
            return(this);
        }