blob: e9ca6e45b0ab4adadacd53c1531d4bb32af64f0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
---
title: DOMPoint.w
slug: Web/API/DOMPointReadOnly/w
tags:
- API
- Coordonnées
- DOM
- Géométrie
- Propriétés
- Quadrilatère
- W
translation_of: Web/API/DOMPointReadOnly/w
---
{{APIRef("DOM")}}{{ SeeCompatTable() }}
La propriété en lecture seule **`w`** de l'interface **`DOMPointReadOnly`** représente la perspective d'un point.
## Syntaxe
```js
var perspective = DOMPoint.w;
```
### Valeur
Un double.
## Spécifications
| Spécification | Statut | Commentaire |
| ---------------------------------------------------------------------------------------- | -------------------------------------------- | -------------------------------------------------- |
| {{SpecName('Geometry Interfaces', '#dom-dompointreadonly-w', 'w')}} | {{Spec2('Geometry Interfaces')}} | La dernière version de la spécification est un ED. |
## Compatibilité des navigateurs
{{Compat("api.DOMPointReadOnly.w")}}
## Voir aussi
- {{domxref("DOMPoint")}}
|