Beispiel #1
0
		/*/// <summary>
		/// Surface molecular pattern of the cell. An array of bits each of which represents a nucleotide.
		/// </summary>
		public MolecularPattern Pattern
		{
			get { return pattern; }
		}*/

		#endregion

		#region Public Methods

		/*public Cell(CellType type, ITissue parent, MolecularPattern initialPattern)
		{
			Type = type;
			Parent = parent;
			pattern = initialPattern;
			maturationLevel = CellMaturationLevel.Immature;
			Start();
		}*/

		public Cell(CellType type, ITissue parent)
		{
			Type = type;
			Parent = parent;
			maturationLevel = CellMaturationLevel.Immature;
			Start();
		}
Beispiel #2
0
        /*/// <summary>
         * /// Surface molecular pattern of the cell. An array of bits each of which represents a nucleotide.
         * /// </summary>
         * public MolecularPattern Pattern
         * {
         *      get { return pattern; }
         * }*/

        #endregion

        #region Public Methods

        /*public Cell(CellType type, ITissue parent, MolecularPattern initialPattern)
         * {
         *      Type = type;
         *      Parent = parent;
         *      pattern = initialPattern;
         *      maturationLevel = CellMaturationLevel.Immature;
         *      Start();
         * }*/

        public Cell(CellType type, ITissue parent)
        {
            Type            = type;
            Parent          = parent;
            maturationLevel = CellMaturationLevel.Immature;
            Start();
        }