0006-Added-new-field-human_height-to-PersonHypothesis-whi.patch

L. Ziegler, 04/16/2014 06:54 PM

Download (1.06 KB)

View differences:

proto/sandbox/rst/hri/PersonHypothesis.proto
78 78
     * The person's name. Empty string means unknown or undecided.
79 79
     */
80 80
    optional string name = 44;
81

  
82
    /**
83
     * Human height of the person (from the ground).
84
     *
85
     * @see http://en.wikipedia.org/wiki/Human_height
86
     *      "Definition of the person's body height"
87
     */
88
    // @unit(meter)
89
    // @constraint(value >= 0)
90
    optional float human_height = 45;
81 91
}
82
-