I sometimes use the below code when removing all children from a Sprite or MovieClip in AS3:

while(myContainer.numChildren)
{
  myContainer.removeChildAt(0);
}

Here is the Papervision equivalent for removing children from a DisplayObject3D:

for(var o:Object in myContainer.children)
{
  myContainer.removeChild(myContainer.children[o]);
}