Package apple.arkit.protocol
Interface ARAnchorCopying
-
- All Superinterfaces:
NSCopying
- All Known Implementing Classes:
ARAnchor,ARBodyAnchor,AREnvironmentProbeAnchor,ARFaceAnchor,ARGeoAnchor,ARImageAnchor,ARMeshAnchor,ARObjectAnchor,ARParticipantAnchor,ARPlaneAnchor
public interface ARAnchorCopying extends NSCopying
An anchor object that can be copied from values of an existing anchor.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.ObjectinitWithAnchor(ARAnchor anchor)Initializes a new anchor object copying values from an existing anchor.-
Methods inherited from interface apple.foundation.protocol.NSCopying
copyWithZone
-
-
-
-
Method Detail
-
initWithAnchor
java.lang.Object initWithAnchor(ARAnchor anchor)
Initializes a new anchor object copying values from an existing anchor. This initializer will be called any time copy is called on anchor of this class. This method must be implemented for any ARAnchor subclasses that adds properties.- Parameters:
anchor- The anchor from which to copy values.
-
-