PonyDeluxe / alembic

Automatically exported from code.google.com/p/alembic
Other
0 stars 0 forks source link

Optional property samples not filling in correctly after being initially defined for Nurbs Curves #333

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Example:

if ( m_knotsProperty )
{ m_knotsProperty.set( iSamp.getKnots() ); }

should probably be:
if ( m_knotsProperty )
{ SetPropUsePrevIfNull( m_knotsProperty, iSamp.getKnots() ); }

like velocities.

(knots, Pw, orders, and a couple other array properties should probably be 
doing this)

Original issue reported on code.google.com by miller.lucas on 19 Dec 2013 at 6:11

GoogleCodeExporter commented 8 years ago
Fix is here:
http://code.google.com/r/millerlucas-dev/source/detail?r=e7d6b9188eb04c0e411135f
6308f1ca5a7e0fd30

Original comment by miller.lucas on 23 Jan 2014 at 12:32

GoogleCodeExporter commented 8 years ago

Original comment by miller.lucas on 25 Jun 2014 at 9:56