Lines Matching defs:frompt
622 Knotspec::pt_io_copy( REAL *topt, INREAL *frompt )
626 topt[3] = (REAL) frompt[3];
628 topt[2] = (REAL) frompt[2];
630 topt[1] = (REAL) frompt[1];
632 topt[0] = (REAL) frompt[0];
636 *topt++ = (REAL) *frompt++;
647 Knotspec::pt_oo_copy( REAL *topt, REAL *frompt )
651 topt[3] = frompt[3];
653 topt[2] = frompt[2];
655 topt[1] = frompt[1];
657 topt[0] = frompt[0];
660 memcpy( topt, frompt, ncoords * sizeof( REAL ) );