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);
        }