Yes, in general the physical row ordering will be the same.
Row ordering on insert relies on using direct path, and this is a fairly common technique in data warehouses or other systems that rely on it to get advantageous compression ratios and/or low clustering factors on particular indexes (which can be a strong driver to reduce bitmap index size).
Functionally however, ordering by rowid seems a bit doubtful. If the source table is already ordered in the desired manner then promoting a full table scan on origin1 would do the job. Otherwise I'd order on the column(s) that you want to improve clustering/compression through.
Although index-ordered tables or hash clusters would give a similar effect with regard to clustering factor, they come with restrictions that may not be helpful. In the case of IOT's it's often helpful with large inserts to order the rows as part of the select to get more efficient maintenance on the target table.