Skip to content

Conchomorph (Snail) genome

Alan Canon edited this page Feb 10, 2017 · 2 revisions

Original Pascal Source

The conchomorph genome is specified in the file Snails/Globals, line 238:

person = RECORD
		WOpening, DDisplacement, SShape, TTranslation: real;
		Coarsegraininess, Reach, GeneratingCurve: integer;
		TranslationGradient, DGradient: real;
		Handedness: -1..1;
	END;

Saved animals

See main article: Conchomorph saved animals

Pascal Second Edition

In Snails/unit_snail_types.pas:

person = record
		WOpening, DDisplacement, SShape, TTranslation: real;
		Coarsegraininess, Reach, GeneratingCurve: integer;
		TranslationGradient, DGradient: real;
		Handedness: -1..1;
	end;

WatchmakerSuite (Java)

The conchomorph genome is specified as the class SnailGenome.