You might try using the lisp program below
and draw a hob tooth centered at 0,0
with the addendum down and the pitch line
also at 0,0. Block this drawing and call
it hob.dwg. Then pull in the lisp program
and follow the prompts. Include the topping
hob profile in the hob profile. I would change
the color of the hop topping profile so you can
see its effect.
(defun c:HOB ()
(command "SNAP" "OFF"

(setq cpg (list 0 0))
(setq ntg (getreal "\nEnter number of teeth on gear: "

)
(setq ngh 18)
(setq odg (+ 2 ngh))
(setq pdg (getreal "\nEnter generating pitch dia of gear: "

)
(setq dpg 1.000)
(setq xi (/ (* -0.25 pi pdg) ntg))
(setq mx (/ pi ngh 2))
(setq sph (list (* -48.0 mx) (* 0.5 pdg)))
(setq rot (/ -180.0 (* ntg ngh)))
(setq cnt -51)
(setq pt1 (list (* -2.2 odg) (* -1.85 odg)))
(setq pt2 (list (* 2.2 odg) (* 1.85 odg)))
(command "OSNAP" "OFF"

(command "SNAP" "OFF"

(command "zoom" "w" pt1 pt2)
(while (< cnt 51)
(progn
(command "INSERT" "HOB" sph 1 1 0 )
(command "rotate" "W" pt1 pt2 "" cpg rot)
(setq sph (list (+ (car sph) mx) (cadr sph)))
(setq cnt (+ cnt 1))
))
)