# PhysicsTransform

> Create an identity transform.

## Definition

* **Type:** Constructor
* **Namespace:** [UnityEngine.LowLevelPhysics2D](/engine/6000.3/script-reference/unityengine/lowlevelphysics2d.md)
* **Assembly:** UnityEngine.Physics2DModule

## PhysicsTransform()

Create an identity transform.

```csharp
public PhysicsTransform()
```

## PhysicsTransform(Vector2)

Create a transformation with the specified translation and no rotation.

```csharp
public PhysicsTransform(Vector2 position)
```

### Parameters

**** (\[Vector2]\(/engine/6000.3/script-reference/unityengine/vector2)): The translation for the transformation.

## PhysicsTransform(Vector2, PhysicsRotate)

Create a transformation with the specified translation and rotation.

```csharp
public PhysicsTransform(Vector2 position, PhysicsRotate rotation)
```

### Parameters

**** (\[Vector2]\(/engine/6000.3/script-reference/unityengine/vector2)): The translation for the transformation.**** (\[PhysicsRotate]\(/engine/6000.3/script-reference/unityengine/lowlevelphysics2d/physicsrotate)): The rotation for the transformation.
