Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ linter:
- prefer_expression_function_bodies
- prefer_final_locals
- unnecessary_await_in_return
- unnecessary_ignore
- use_string_buffers
2 changes: 0 additions & 2 deletions benchmark/matrix_bench.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
// All rights reserved. Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// ignore_for_file: deprecated_member_use_from_same_package

import 'dart:math' as math;
import 'dart:typed_data';

Expand Down
4 changes: 2 additions & 2 deletions lib/src/vector_math_operations/matrix.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

part of '../../vector_math_operations.dart';

// ignore: avoid_classes_with_only_static_members
/// Static methods operating on 4x4 matrices packed column major into a
/// Float32List.
// ignore: avoid_classes_with_only_static_members
class Matrix44Operations {
/// Compute the determinant of the 4x4 [matrix] starting at [offset].
static double determinant(Float32List matrix, int offset) {
Expand Down Expand Up @@ -275,9 +275,9 @@ class Matrix44Operations {
}
}

// ignore: avoid_classes_with_only_static_members
/// Static methods operating on 4x4 matrices packed column major into a
/// Float32x4List.
// ignore: avoid_classes_with_only_static_members
class Matrix44SIMDOperations {
/// [out] = [A] * [B]; Starting at [outOffset], [aOffset], and [bOffset].
static void multiply(
Expand Down
2 changes: 0 additions & 2 deletions test/geometry_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
// All rights reserved. Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// ignore_for_file: deprecated_member_use_from_same_package

import 'dart:typed_data';

import 'package:test/test.dart';
Expand Down
2 changes: 0 additions & 2 deletions test/matrix4_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
// All rights reserved. Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// ignore_for_file: deprecated_member_use_from_same_package

import 'dart:math' as math;
import 'dart:typed_data';

Expand Down
2 changes: 0 additions & 2 deletions test/noise_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
// All rights reserved. Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// ignore_for_file: deprecated_member_use_from_same_package

import 'package:test/test.dart';

import 'package:vector_math/vector_math.dart';
Expand Down
Loading