Consider the following MWE:
Code: Select all
\documentclass{article}
\usepackage{pstricks-add}
\begin{document}
\def\PI{3.1415926535897932384626}
\def\minimum{0}
\def\maximum{10}
\pstFPsub\length{\maximum}{\minimum}
\pstFPsub\constA{\PI}{2}
\pstFPdiv\constB{\constA}{2}
\pstFPmul\square{\length}{\length}
\pstFPmul\area{\constB}{\square}
\area
\end{document}
\area
using the \pstFP
syntax?Thank you in advance!