Lines Matching refs:aCamGeo
346 drawing::CameraGeometry aCamGeo; in setPropertyValueImpl() local
348 if(rValue >>= aCamGeo) in setPropertyValueImpl()
350 basegfx::B3DPoint aVRP(aCamGeo.vrp.PositionX, aCamGeo.vrp.PositionY, aCamGeo.vrp.PositionZ); in setPropertyValueImpl()
351 basegfx::B3DVector aVPN(aCamGeo.vpn.DirectionX, aCamGeo.vpn.DirectionY, aCamGeo.vpn.DirectionZ); in setPropertyValueImpl()
352 basegfx::B3DVector aVUP(aCamGeo.vup.DirectionX, aCamGeo.vup.DirectionY, aCamGeo.vup.DirectionZ); in setPropertyValueImpl()
457 drawing::CameraGeometry aCamGeo; in getPropertyValueImpl() local
466 aCamGeo.vrp.PositionX = aVRP.getX(); in getPropertyValueImpl()
467 aCamGeo.vrp.PositionY = aVRP.getY(); in getPropertyValueImpl()
468 aCamGeo.vrp.PositionZ = aVRP.getZ(); in getPropertyValueImpl()
469 aCamGeo.vpn.DirectionX = aVPN.getX(); in getPropertyValueImpl()
470 aCamGeo.vpn.DirectionY = aVPN.getY(); in getPropertyValueImpl()
471 aCamGeo.vpn.DirectionZ = aVPN.getZ(); in getPropertyValueImpl()
472 aCamGeo.vup.DirectionX = aVUP.getX(); in getPropertyValueImpl()
473 aCamGeo.vup.DirectionY = aVUP.getY(); in getPropertyValueImpl()
474 aCamGeo.vup.DirectionZ = aVUP.getZ(); in getPropertyValueImpl()
476 rValue <<= aCamGeo; in getPropertyValueImpl()