Dividing age by 100 (age covariate)

Hi,

I’m trying to run a one-phenotype (continuous) ACE model with age as a covariate (oneACEvca.R) for my twin data. I noticed that in the script from Hermine Maes’s website, the age variable is divided by 100. is it mandatory to divide age with 100?
Here’s the relevant part of the script:

Select Covariates for Analysis

twinData[,‘age’] ← twinData[,‘age’]/100
twinData ← twinData[-which(is.na(twinData$age)),]
covVars ← ‘age’

Thanks.