wxErlang

wxGraphicsMatrix.erl

  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
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
%       /¯_ |¯\  /\  |¯\ | |  | /¯   (`  |\/|  /\  ¯|¯ |¯\  | \/ 
%\  W X \_/ |¯\ /¯¯\ |¯¯ |¯|  | \_, \_)  |  | /¯¯\  |  |¯\  | /\ . E R L
%%——————————————————————————————————————————————————————————
%%
%%   Copyright Ericsson AB 2008-2013. All Rights Reserved.
%%
%%——————————————————————————————————————————————
%% Whitespace Beautified by ScriptCulture © 2018
%% Sit Back · Feet Up · Learn wxErlang
%% For use as a reference only
%% www.scriptculture.com
%% Not check-summed 
%% wx 1.8 —————————————————————————————————————— 
%%
%% Licensed under the Apache License, 
%% Version 2.0 (the "License"); you may 
%% not use this file except in compliance 
%% with the License. You may obtain a copy 
%% of the License at:
%%
%%     http://www.apache.org/licenses/LICENSE-2.0
%%
%% Unless required by 
%% applicable law or agreed to in writing, software
%% distributed under the License is distributed 
%% on an "AS IS" BASIS, WITHOUT WARRANTIES 
%% OR CONDITIONS OF ANY KIND, either 
%% express or implied. See the 
%% License for the specific 
%% language governing 
%% permissions and
%% limitations 
%% under the 
%% License.
%%%%%%%
%%%%
%%%%%
%% @doc See external documentation: <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxgraphicsmatrix.html">wxGraphicsMatrix</a>.
%% <p>This class is derived (and can use functions) from:
%% <br />{@link wxGraphicsObject}
%% </p>
%% @type wxGraphicsMatrix().  
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%   
%%   OVERVIEW
%%   ––––––––
%%   A wxGraphicsMatrix is a native representation of an affine matrix.
%%   The contents are specific and private to the respective renderer. 
%%   Instances are ref counted and can therefore be assigned as usual. 
%%   The only way to get a valid instance is via a CreateMatrix call 
%%   on the graphics context or the renderer instance.
%%   
%%   
%%   See Also:
%%   —————————
%%   
%%   
%%   
-module(wxGraphicsMatrix).
-include("wxe.hrl").
-export([
         concat/2,
         get/1,
         invert/1,
         isEqual/2,
         isIdentity/1,
         rotate/2,
         scale/3,
         set/1,
         set/2,
         transformDistance/1,
         transformPoint/1,
         translate/3
       ]).


%% inherited exports
-export([getRenderer/1,isNull/1,parent_class/1]).

-export_type([wxGraphicsMatrix/0]).


%% @hidden
parent_class(wxGraphicsObject) -> true;
parent_class(_Class) -> erlang:error({badtype, ?MODULE}).

-type wxGraphicsMatrix()  ::  wx:wx_object().








           %·%% CONCAT %%·%

%%   
%%    Concatenates the matrix passed with the current matrix.
%%   
%% Return Value:
%% See Also:
%%*%%*%%
          -spec concat(This, T) -> ok
           when
           This :: wxGraphicsMatrix(), 
           T    :: wxGraphicsMatrix().

concat(#wx_ref{type=ThisT,ref=ThisRef},
       #wx_ref{type=TT,ref=TRef}) ->
                                   ?CLASS(ThisT,wxGraphicsMatrix),
                                   ?CLASS(TT,wxGraphicsMatrix),
                     wxe_util:cast(?wxGraphicsMatrix_Concat,
                     <<ThisRef:32/?UI,TRef:32/?UI>>).





           %·%% GET %%·%

%%   
%%    Returns the component values of the matrix via the argument pointers.
%%   
%% Return Value:
%% See Also:
%%*%%*%%
          -spec get(This) -> Result when
           Result  :: {A  :: number(), 
                       B  :: number(), 
                       C  :: number(), 
                       D  :: number(), 
                       Tx :: number(), 
                       Ty :: number()},
           This :: wxGraphicsMatrix().

get(#wx_ref{type=ThisT,ref=ThisRef}) ->
                                      ?CLASS(ThisT,wxGraphicsMatrix),
                        wxe_util:call(?wxGraphicsMatrix_Get,
                        <<ThisRef:32/?UI>>).





           %·%% INVERT %%·%

%%   
%%    Inverts the matrix.
%%   
%% Return Value:
%% See Also:
%%*%%*%%
          -spec invert(This) -> ok
           when
           This :: wxGraphicsMatrix().

invert(#wx_ref{type=ThisT,ref=ThisRef}) ->
                                         ?CLASS(ThisT,wxGraphicsMatrix),
                           wxe_util:cast(?wxGraphicsMatrix_Invert,
                           <<ThisRef:32/?UI>>).





           %·%% IS EQUAL %%·%

%%   
%%    Returns true if the elements of the transformation matrix are equal.
%%   
%% Return Value:
%% See Also:
%%*%%*%%
          -spec isEqual(This, T) -> boolean()
           when
           This :: wxGraphicsMatrix(), 
           T    :: wxGraphicsMatrix().

isEqual(#wx_ref{type=ThisT,ref=ThisRef},
        #wx_ref{type=TT,ref=TRef}) ->
                                    ?CLASS(ThisT,wxGraphicsMatrix),
                                    ?CLASS(TT,wxGraphicsMatrix),
                      wxe_util:call(?wxGraphicsMatrix_IsEqual,
                      <<ThisRef:32/?UI,TRef:32/?UI>>).





           %·%% IS IDENTIFY %%·%

%%   
%%    Return true if this is the identity matrix.
%%   
%% Return Value:
%% See Also:
%%*%%*%%
          -spec isIdentity(This) -> boolean()
           when
           This :: wxGraphicsMatrix().

isIdentity(#wx_ref{type=ThisT,ref=ThisRef}) ->
                                             ?CLASS(ThisT,wxGraphicsMatrix),
                               wxe_util:call(?wxGraphicsMatrix_IsIdentity,
                               <<ThisRef:32/?UI>>).





           %·%% ROTATE %%·%

%%   
%%    Rotates this matrix (radians).
%%   
%% Return Value:
%% See Also:
%%*%%*%%
          -spec rotate(This, Angle) -> ok
           when
           This  :: wxGraphicsMatrix(), 
           Angle :: number().

rotate(#wx_ref{type=ThisT,ref=ThisRef}, Angle)
           when 
           is_number(Angle) ->
                             ?CLASS(ThisT,wxGraphicsMatrix),
               wxe_util:cast(?wxGraphicsMatrix_Rotate,
               <<ThisRef:32/?UI,0:32,Angle:64/?F>>).





           %·%% SCALE %%·%

%%   
%%    Scales this matrix.
%%   
%% Return Value:
%% See Also:
%%*%%*%%
          -spec scale(This, XScale, YScale) -> ok
           when
           This   :: wxGraphicsMatrix(), 
           XScale ::           number(), 
           YScale ::           number().

scale(#wx_ref{type=ThisT,ref=ThisRef}, XScale, YScale)
           when 
           is_number(XScale),
           is_number(YScale) ->
                              ?CLASS(ThisT,wxGraphicsMatrix),
                wxe_util:cast(?wxGraphicsMatrix_Scale,
                <<ThisRef:32/?UI,0:32,XScale:64/?F,YScale:64/?F>>).





           %·%% TRANSLATE %%·%

%%   
%%   Translates this matrix. 
%%   
%% Return Value:
%% See Also:
%%*%%*%%
          -spec translate(This, Dx, Dy) -> ok
           when
           This :: wxGraphicsMatrix(), 
           Dx   ::           number(), 
           Dy   ::           number().

translate(#wx_ref{type=ThisT,ref=ThisRef}, Dx, Dy)
           when 
           is_number(Dx),
           is_number(Dy) ->
                          ?CLASS(ThisT,wxGraphicsMatrix),
            wxe_util:cast(?wxGraphicsMatrix_Translate,
            <<ThisRef:32/?UI,0:32,Dx:64/?F,Dy:64/?F>>).






           %·%% SET %%·%

%%   
%% See below...
%% @equiv set(This, [])
          -spec set(This)          -> ok
           when
           This :: wxGraphicsMatrix().

set(This)
           when 
           is_record(This, wx_ref) -> set(This, []).

%%
%%    Sets the matrix to the respective values (default values are the identity matrix)
%%    
%% Return Value:
%% See Also:
%%*%%*%%
          -spec set(This, [Option]) -> ok
           when
           This    :: wxGraphicsMatrix(),
           Option  :: {a,  number()}
                    | {b,  number()}
                    | {c,  number()}
                    | {d,  number()}
                    | {tx, number()}
                    | {ty, number()}.

set(#wx_ref{type=ThisT,ref=ThisRef}, Options)
           when 
           is_list(Options) ->
                             ?CLASS(ThisT,wxGraphicsMatrix),
                   MOpts = fun({a,  A }, Acc) -> [<<1:32/?UI,0:32,A:64/?F>>|Acc];
                              ({b,  B }, Acc) -> [<<2:32/?UI,0:32,B:64/?F>>|Acc];
                              ({c,  C }, Acc) -> [<<3:32/?UI,0:32,C:64/?F>>|Acc];
                              ({d,  D }, Acc) -> [<<4:32/?UI,0:32,D:64/?F>>|Acc];
                              ({tx, Tx}, Acc) -> [<<5:32/?UI,0:32,Tx:64/?F>>|Acc];
                              ({ty, Ty}, Acc) -> [<<6:32/?UI,0:32,Ty:64/?F>>|Acc];
                                  (BadOpt, _) -> erlang:error({badoption, BadOpt})
            end,
                   BinOpt = list_to_binary(lists:foldl(MOpts, [<<0:32>>], Options)),
                                        wxe_util:cast(?wxGraphicsMatrix_Set,
                                       <<ThisRef:32/?UI, 0:32,BinOpt/binary>>).





           %·%% TRANSFORM POINT %%·%

%%   
%%    Applies this matrix to a point.
%%   
%% Return Value:
%% See Also:
%%*%%*%%
          -spec transformPoint(This) -> {X :: number(), Y :: number()}
           when
           This :: wxGraphicsMatrix().

transformPoint(#wx_ref{type=ThisT,ref=ThisRef}) ->
                                                 ?CLASS(ThisT,wxGraphicsMatrix),
                                   wxe_util:call(?wxGraphicsMatrix_TransformPoint,
                                   <<ThisRef:32/?UI>>).





           %·%% TRANSFORM DISTANCE %%·%

%%   
%%    Applies this matrix to a distance 
%%   (ie. performs all transforms except translations)
%%   
%% Return Value:
%% See Also:
%%*%%*%%
          -spec transformDistance(This) -> {Dx :: number(), Dy :: number()}
           when
           This :: wxGraphicsMatrix().

transformDistance(#wx_ref{type=ThisT,ref=ThisRef}) ->
                                                    ?CLASS(ThisT,wxGraphicsMatrix),
                                      wxe_util:call(?wxGraphicsMatrix_TransformDistance,
                                      <<ThisRef:32/?UI>>).

 



%% From wxGraphicsObject




%% @hidden
isNull(This) -> wxGraphicsObject:isNull(This).
%% @hidden
getRenderer(This) -> wxGraphicsObject:getRenderer(This).